├── .cruft.json ├── .devcontainer └── devcontainer.json ├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── pyproject.toml ├── src └── graphchain │ ├── __init__.py │ ├── core.py │ ├── py.typed │ └── utils.py └── tests ├── __init__.py ├── test_dask_dataframe.py ├── test_graphchain.py └── test_high_level_graph.py /.cruft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.cruft.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/graphchain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/src/graphchain/__init__.py -------------------------------------------------------------------------------- /src/graphchain/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/src/graphchain/core.py -------------------------------------------------------------------------------- /src/graphchain/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graphchain/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/src/graphchain/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Graphchain module tests.""" 2 | -------------------------------------------------------------------------------- /tests/test_dask_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/tests/test_dask_dataframe.py -------------------------------------------------------------------------------- /tests/test_graphchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/tests/test_graphchain.py -------------------------------------------------------------------------------- /tests/test_high_level_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superlinear-ai/graphchain/HEAD/tests/test_high_level_graph.py --------------------------------------------------------------------------------