{"id":31004509,"url":"https://github.com/ryanrudes/forceatlas","last_synced_at":"2025-10-16T11:26:14.540Z","repository":{"id":57714480,"uuid":"517142165","full_name":"ryanrudes/forceatlas","owner":"ryanrudes","description":"Gephi ForceAtlas2 with networkx compatibility and support for thread-based parallelism","archived":false,"fork":false,"pushed_at":"2024-07-16T22:25:11.000Z","size":59732,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-14T05:57:56.568Z","etag":null,"topics":["force-directed-graphs","forceatlas2","graph-layout","multithreading","networkx"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ryanrudes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-23T19:03:43.000Z","updated_at":"2025-04-12T09:25:51.000Z","dependencies_parsed_at":"2025-09-13T02:07:31.248Z","dependency_job_id":null,"html_url":"https://github.com/ryanrudes/forceatlas","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ryanrudes/forceatlas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanrudes%2Fforceatlas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanrudes%2Fforceatlas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanrudes%2Fforceatlas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanrudes%2Fforceatlas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryanrudes","download_url":"https://codeload.github.com/ryanrudes/forceatlas/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanrudes%2Fforceatlas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279183324,"owners_count":26121377,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-16T02:00:06.019Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["force-directed-graphs","forceatlas2","graph-layout","multithreading","networkx"],"created_at":"2025-09-13T01:55:55.651Z","updated_at":"2025-10-16T11:26:14.515Z","avatar_url":"https://github.com/ryanrudes.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gephi ForceAtlas2\n\n[![PyPI download month](https://img.shields.io/pypi/dm/forceatlas.svg)](https://pypi.python.org/pypi/forceatlas/)\n[![PyPI - Status](https://img.shields.io/pypi/status/forceatlas)](https://pypi.python.org/pypi/forceatlas/)\n[![PyPI](https://img.shields.io/pypi/v/forceatlas)](https://pypi.python.org/pypi/forceatlas/)\n![GitHub](https://img.shields.io/github/license/ryanrudes/forceatlas)\n\nThis package is a Python-friendly port of the multithreaded [Java implementation](https://github.com/klarman-cell-observatory/forceatlas2) of the Gephi ForceAtlas2 layout algorithm. It is compatible with [networkx](https://github.com/networkx/networkx) and supports both 2D and 3D layout.\n\n## Installation\nIt can be installed with the default Python package manager via the command\n\n```\npip install forceatlas\n```\n\n## Example\nThe package is consistent with networkx in documentation-style and function arguments. See the documentation for more details.\n```python\nimport matplotlib.pyplot as plt\nimport forceatlas as fa2\nimport networkx as nx\n\nG = nx.fast_gnp_random_graph(100, 0.1)\npos = fa2.fa2_layout(G, iterations = 10000, threshold = 1e-3)\n\nnx.draw(G)\nplt.savefig(\"graph.png\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanrudes%2Fforceatlas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryanrudes%2Fforceatlas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanrudes%2Fforceatlas/lists"}