├── .flake8 ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── pygds ├── __init__.py ├── algorithms.py ├── gds.py ├── graph.py ├── mixins.py └── tests │ ├── __init__.py │ ├── test_algo.py │ └── test_graph.py ├── requirements ├── base.txt └── tests.txt └── setup.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/README.md -------------------------------------------------------------------------------- /pygds/__init__.py: -------------------------------------------------------------------------------- 1 | from .gds import GDS 2 | 3 | __all__ = [GDS] 4 | -------------------------------------------------------------------------------- /pygds/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/pygds/algorithms.py -------------------------------------------------------------------------------- /pygds/gds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/pygds/gds.py -------------------------------------------------------------------------------- /pygds/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/pygds/graph.py -------------------------------------------------------------------------------- /pygds/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/pygds/mixins.py -------------------------------------------------------------------------------- /pygds/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/pygds/tests/__init__.py -------------------------------------------------------------------------------- /pygds/tests/test_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/pygds/tests/test_algo.py -------------------------------------------------------------------------------- /pygds/tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/pygds/tests/test_graph.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- 1 | neo4j 2 | -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- 1 | flake8 2 | pytest 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellasia/pygds/HEAD/setup.py --------------------------------------------------------------------------------