├── .github └── workflows │ └── python-driver-test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── agensgraph ├── __init__.py ├── _edge.py ├── _graphid.py ├── _graphpath.py ├── _property.py └── _vertex.py ├── setup.py └── tests ├── __init__.py ├── test_agensgraph.py ├── test_edge.py ├── test_graphid.py ├── test_graphpath.py ├── test_property.py └── test_vertex.py /.github/workflows/python-driver-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/.github/workflows/python-driver-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/README.md -------------------------------------------------------------------------------- /agensgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/agensgraph/__init__.py -------------------------------------------------------------------------------- /agensgraph/_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/agensgraph/_edge.py -------------------------------------------------------------------------------- /agensgraph/_graphid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/agensgraph/_graphid.py -------------------------------------------------------------------------------- /agensgraph/_graphpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/agensgraph/_graphpath.py -------------------------------------------------------------------------------- /agensgraph/_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/agensgraph/_property.py -------------------------------------------------------------------------------- /agensgraph/_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/agensgraph/_vertex.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_agensgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/tests/test_agensgraph.py -------------------------------------------------------------------------------- /tests/test_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/tests/test_edge.py -------------------------------------------------------------------------------- /tests/test_graphid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/tests/test_graphid.py -------------------------------------------------------------------------------- /tests/test_graphpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/tests/test_graphpath.py -------------------------------------------------------------------------------- /tests/test_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/tests/test_property.py -------------------------------------------------------------------------------- /tests/test_vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skaiworldwide-oss/agensgraph-python/HEAD/tests/test_vertex.py --------------------------------------------------------------------------------