├── .github └── workflows │ └── stale.yml ├── .gitignore ├── CHANGELOG.rst ├── Dockerfile ├── LICENSE.txt ├── README.rst ├── arango_orm ├── __init__.py ├── collections.py ├── connection_pool.py ├── database.py ├── event │ └── __init__.py ├── exceptions.py ├── fields.py ├── graph.py ├── query.py └── references.py ├── docker-compose.yml ├── docs ├── Makefile ├── api-reference.rst ├── conf.py ├── getting-started.rst ├── index.rst └── make.bat ├── examples ├── Universite_Database_and_Graph_Example.html ├── Universite_Database_and_Graph_Example.ipynb ├── simple_teacher_student_graph.py └── university_graph.py ├── getting-started.rst ├── recipes.md ├── requirements.txt ├── setup.cfg ├── setup.py ├── temp_test ├── test_code.py ├── test_extra_fields.py └── test_ref_relationships.py ├── tests ├── __init__.py ├── conftest.py ├── data.py ├── test_collections.py ├── test_database.py ├── test_event.py ├── test_graph.py ├── test_inheritance_mapping.py ├── test_inheritance_multiple.py ├── test_inheritance_resolver.py ├── test_query.py └── utils.py └── tox.ini /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/README.rst -------------------------------------------------------------------------------- /arango_orm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/__init__.py -------------------------------------------------------------------------------- /arango_orm/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/collections.py -------------------------------------------------------------------------------- /arango_orm/connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/connection_pool.py -------------------------------------------------------------------------------- /arango_orm/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/database.py -------------------------------------------------------------------------------- /arango_orm/event/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/event/__init__.py -------------------------------------------------------------------------------- /arango_orm/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/exceptions.py -------------------------------------------------------------------------------- /arango_orm/fields.py: -------------------------------------------------------------------------------- 1 | from marshmallow.fields import * 2 | -------------------------------------------------------------------------------- /arango_orm/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/graph.py -------------------------------------------------------------------------------- /arango_orm/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/query.py -------------------------------------------------------------------------------- /arango_orm/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/arango_orm/references.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api-reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/docs/api-reference.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/docs/getting-started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/Universite_Database_and_Graph_Example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/examples/Universite_Database_and_Graph_Example.html -------------------------------------------------------------------------------- /examples/Universite_Database_and_Graph_Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/examples/Universite_Database_and_Graph_Example.ipynb -------------------------------------------------------------------------------- /examples/simple_teacher_student_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/examples/simple_teacher_student_graph.py -------------------------------------------------------------------------------- /examples/university_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/examples/university_graph.py -------------------------------------------------------------------------------- /getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/getting-started.rst -------------------------------------------------------------------------------- /recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/recipes.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-arango 2 | marshmallow 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | 4 | [bdist_wheel] 5 | universal=1 6 | 7 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/setup.py -------------------------------------------------------------------------------- /temp_test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/temp_test/test_code.py -------------------------------------------------------------------------------- /temp_test/test_extra_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/temp_test/test_extra_fields.py -------------------------------------------------------------------------------- /temp_test/test_ref_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/temp_test/test_ref_relationships.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/data.py -------------------------------------------------------------------------------- /tests/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_collections.py -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_event.py -------------------------------------------------------------------------------- /tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_graph.py -------------------------------------------------------------------------------- /tests/test_inheritance_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_inheritance_mapping.py -------------------------------------------------------------------------------- /tests/test_inheritance_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_inheritance_multiple.py -------------------------------------------------------------------------------- /tests/test_inheritance_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_inheritance_resolver.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/threatify/arango-orm/HEAD/tox.ini --------------------------------------------------------------------------------