{"id":44926781,"url":"https://github.com/mathisxy/edgygraph","last_synced_at":"2026-02-18T05:02:50.152Z","repository":{"id":331976746,"uuid":"1132382920","full_name":"mathisxy/edgygraph","owner":"mathisxy","description":"Typed Graph Framework in Python for building Pipelines","archived":false,"fork":false,"pushed_at":"2026-02-16T00:39:12.000Z","size":768,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-16T08:19:58.645Z","etag":null,"topics":["graph","graphs","langgraph","pipeline","pydantic-v2","python","python3","python3-13","python313"],"latest_commit_sha":null,"homepage":"https://mathisxy.github.io/edgygraph/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mathisxy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":".github/ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-11T21:21:58.000Z","updated_at":"2026-02-16T00:38:28.000Z","dependencies_parsed_at":"2026-02-07T18:02:12.713Z","dependency_job_id":null,"html_url":"https://github.com/mathisxy/edgygraph","commit_stats":null,"previous_names":["mathisxy/edgy-graph"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mathisxy/edgygraph","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathisxy%2Fedgygraph","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathisxy%2Fedgygraph/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathisxy%2Fedgygraph/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathisxy%2Fedgygraph/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mathisxy","download_url":"https://codeload.github.com/mathisxy/edgygraph/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathisxy%2Fedgygraph/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29569853,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T04:18:28.490Z","status":"ssl_error","status_checked_at":"2026-02-18T04:13:49.018Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["graph","graphs","langgraph","pipeline","pydantic-v2","python","python3","python3-13","python313"],"created_at":"2026-02-18T05:02:44.928Z","updated_at":"2026-02-18T05:02:50.147Z","avatar_url":"https://github.com/mathisxy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Typed Graph-based Pipeline Builder\n\n[![Pipy](https://img.shields.io/pypi/v/edgygraph)](https://pypi.org/project/edgygraph/)\n[![Downloads](https://img.shields.io/pypi/dm/edgygraph)](https://pypi.org/project/edgygraph/#files)\n[![Issues](https://img.shields.io/github/issues/mathisxy/edgygraph)](https://github.com/mathisxy/edgygraph/issues)\n[![Type Check](https://github.com/mathisxy/edgygraph/actions/workflows/typecheck.yml/badge.svg?branch=main)](https://github.com/mathisxy/Edgy-Graph/actions/workflows/typecheck.yml)\n[![Deploy Docs](https://github.com/mathisxy/edgygraph/actions/workflows/docs.yml/badge.svg)](https://github.com/mathisxy/Edgy-Graph/actions/workflows/docs.yml)\n[![Documentation](https://img.shields.io/badge/Docs-GitHub%20Pages-blue)](https://mathisxy.github.io/edgygraph/)\n\nA **pydantically** typed, lightweight **graph framework** for Python that combines features from [Langgraph](https://github.com/langchain-ai/langgraph) with **static type security**.\n\nA community collection of nodes will be available [here](https://www.github.com/mathisxy/edgynodes/).\n\n## Overview\n\n- **Pydantic Typing**: \u003cbr\u003e Built on Pydantic and Generics for complete static type safety.\n- **Inheritance and Variance**: \u003cbr\u003e Easily extend and specialize state and node classes.\n- **Parallel Task Processing**: \u003cbr\u003e Multiple nodes can run simultaneously\n- **Dual State Management**:\n    - State with automatic change extraction and conflict detection\n    - Shared state accessible by all nodes, protected via explicit locking\n- **Flexible Routing**: \u003cbr\u003e Define simple node-to-node edges or dynamic routing based on functions.\n- **Streaming**: \u003cbr\u003e A standardized interface for streaming data between nodes.\n\n## Installation\n\n### PyPI\n```bash\npip install edgygraph\n```\n\u003e Python 3.13+ is required\n\n\n## Example Workflow\n\n### Import Classes\n\n```python\nfrom edgygraph import State, Shared, Node, START, END, Graph\nimport asyncio\n```\n\n### Create a State\n\n```python\nclass MyState(State):\n\n    capslock: bool = False\n```\n\n### Create a Node\n\n```python\nclass MyNode(Node[MyState, Shared]):\n\n    async def __call__(self, state: MyState, shared: Shared) -\u003e None:\n\n        if state.capslock:\n            print(\"HELLO WORLD!\")\n        else:\n            print(\"Hello World!\")\n```\n\n### Create Instances\n\n```python\nstate = MyState(capslock=True)\nshared = Shared()\n\nnode = MyNode()\n```\n\n### Create a Graph\n\n```python\nGraph[MyState, Shared](\n    edges=[\n        (\n            START,\n            node\n        ),\n        (\n            node,\n            END\n        )\n    ]\n)\n```\n\n### Run Graph\n\n```python\nasyncio.run(graph(state, shared))\n```\n\n\u003cbr\u003e\n\n \u003e More examples can be found in the examples folder\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathisxy%2Fedgygraph","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathisxy%2Fedgygraph","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathisxy%2Fedgygraph/lists"}