├── .circleci └── config.yml ├── .github └── workflows │ ├── codeql.yaml │ ├── docs.yaml │ └── pypi.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── arango ├── __init__.py ├── api.py ├── aql.py ├── backup.py ├── client.py ├── cluster.py ├── collection.py ├── connection.py ├── cursor.py ├── database.py ├── errno.py ├── exceptions.py ├── executor.py ├── formatter.py ├── foxx.py ├── graph.py ├── http.py ├── job.py ├── pregel.py ├── py.typed ├── replication.py ├── request.py ├── resolver.py ├── response.py ├── result.py ├── typings.py ├── utils.py └── wal.py ├── docs ├── Makefile ├── admin.rst ├── analyzer.rst ├── aql.rst ├── async.rst ├── auth.rst ├── backup.rst ├── batch.rst ├── certificates.rst ├── cluster.rst ├── collection.rst ├── compression.rst ├── conf.py ├── contributing.rst ├── cursor.rst ├── database.rst ├── document.rst ├── errno.rst ├── errors.rst ├── foxx.rst ├── graph.rst ├── http.rst ├── index.rst ├── indexes.rst ├── logging.rst ├── make.bat ├── overload.rst ├── overview.rst ├── pregel.rst ├── replication.rst ├── requirements.txt ├── schema.rst ├── serializer.rst ├── simple.rst ├── specs.rst ├── static │ └── logo.png ├── task.rst ├── threading.rst ├── transaction.rst ├── user.rst ├── view.rst └── wal.rst ├── pyproject.toml ├── setup.cfg ├── setup.py ├── starter.sh └── tests ├── __init__.py ├── conftest.py ├── executors.py ├── helpers.py ├── static ├── cluster-3.11.conf ├── cluster-3.12.conf ├── keyfile ├── service.zip ├── setup.sh ├── single-3.11.conf └── single-3.12.conf ├── test_analyzer.py ├── test_aql.py ├── test_async.py ├── test_auth.py ├── test_backup.py ├── test_batch.py ├── test_client.py ├── test_cluster.py ├── test_collection.py ├── test_cursor.py ├── test_database.py ├── test_document.py ├── test_exception.py ├── test_foxx.py ├── test_graph.py ├── test_index.py ├── test_overload.py ├── test_permission.py ├── test_pregel.py ├── test_replication.py ├── test_request.py ├── test_resolver.py ├── test_response.py ├── test_task.py ├── test_transaction.py ├── test_user.py ├── test_view.py └── test_wal.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/README.md -------------------------------------------------------------------------------- /arango/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/__init__.py -------------------------------------------------------------------------------- /arango/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/api.py -------------------------------------------------------------------------------- /arango/aql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/aql.py -------------------------------------------------------------------------------- /arango/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/backup.py -------------------------------------------------------------------------------- /arango/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/client.py -------------------------------------------------------------------------------- /arango/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/cluster.py -------------------------------------------------------------------------------- /arango/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/collection.py -------------------------------------------------------------------------------- /arango/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/connection.py -------------------------------------------------------------------------------- /arango/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/cursor.py -------------------------------------------------------------------------------- /arango/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/database.py -------------------------------------------------------------------------------- /arango/errno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/errno.py -------------------------------------------------------------------------------- /arango/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/exceptions.py -------------------------------------------------------------------------------- /arango/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/executor.py -------------------------------------------------------------------------------- /arango/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/formatter.py -------------------------------------------------------------------------------- /arango/foxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/foxx.py -------------------------------------------------------------------------------- /arango/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/graph.py -------------------------------------------------------------------------------- /arango/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/http.py -------------------------------------------------------------------------------- /arango/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/job.py -------------------------------------------------------------------------------- /arango/pregel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/pregel.py -------------------------------------------------------------------------------- /arango/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arango/replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/replication.py -------------------------------------------------------------------------------- /arango/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/request.py -------------------------------------------------------------------------------- /arango/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/resolver.py -------------------------------------------------------------------------------- /arango/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/response.py -------------------------------------------------------------------------------- /arango/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/result.py -------------------------------------------------------------------------------- /arango/typings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/typings.py -------------------------------------------------------------------------------- /arango/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/utils.py -------------------------------------------------------------------------------- /arango/wal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/arango/wal.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/admin.rst -------------------------------------------------------------------------------- /docs/analyzer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/analyzer.rst -------------------------------------------------------------------------------- /docs/aql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/aql.rst -------------------------------------------------------------------------------- /docs/async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/async.rst -------------------------------------------------------------------------------- /docs/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/auth.rst -------------------------------------------------------------------------------- /docs/backup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/backup.rst -------------------------------------------------------------------------------- /docs/batch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/batch.rst -------------------------------------------------------------------------------- /docs/certificates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/certificates.rst -------------------------------------------------------------------------------- /docs/cluster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/cluster.rst -------------------------------------------------------------------------------- /docs/collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/collection.rst -------------------------------------------------------------------------------- /docs/compression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/compression.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/cursor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/cursor.rst -------------------------------------------------------------------------------- /docs/database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/database.rst -------------------------------------------------------------------------------- /docs/document.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/document.rst -------------------------------------------------------------------------------- /docs/errno.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/errno.rst -------------------------------------------------------------------------------- /docs/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/errors.rst -------------------------------------------------------------------------------- /docs/foxx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/foxx.rst -------------------------------------------------------------------------------- /docs/graph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/graph.rst -------------------------------------------------------------------------------- /docs/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/http.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/indexes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/indexes.rst -------------------------------------------------------------------------------- /docs/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/logging.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/overload.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/overload.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/pregel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/pregel.rst -------------------------------------------------------------------------------- /docs/replication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/replication.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | requests_toolbelt 2 | importlib_metadata 3 | PyJWT 4 | sphinx_rtd_theme 5 | -------------------------------------------------------------------------------- /docs/schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/schema.rst -------------------------------------------------------------------------------- /docs/serializer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/serializer.rst -------------------------------------------------------------------------------- /docs/simple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/simple.rst -------------------------------------------------------------------------------- /docs/specs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/specs.rst -------------------------------------------------------------------------------- /docs/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/static/logo.png -------------------------------------------------------------------------------- /docs/task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/task.rst -------------------------------------------------------------------------------- /docs/threading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/threading.rst -------------------------------------------------------------------------------- /docs/transaction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/transaction.rst -------------------------------------------------------------------------------- /docs/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/user.rst -------------------------------------------------------------------------------- /docs/view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/view.rst -------------------------------------------------------------------------------- /docs/wal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/docs/wal.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/setup.py -------------------------------------------------------------------------------- /starter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/starter.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/executors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/executors.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/static/cluster-3.11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/static/cluster-3.11.conf -------------------------------------------------------------------------------- /tests/static/cluster-3.12.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/static/cluster-3.12.conf -------------------------------------------------------------------------------- /tests/static/keyfile: -------------------------------------------------------------------------------- 1 | secret 2 | -------------------------------------------------------------------------------- /tests/static/service.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/static/service.zip -------------------------------------------------------------------------------- /tests/static/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/static/setup.sh -------------------------------------------------------------------------------- /tests/static/single-3.11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/static/single-3.11.conf -------------------------------------------------------------------------------- /tests/static/single-3.12.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/static/single-3.12.conf -------------------------------------------------------------------------------- /tests/test_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_analyzer.py -------------------------------------------------------------------------------- /tests/test_aql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_aql.py -------------------------------------------------------------------------------- /tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_async.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_backup.py -------------------------------------------------------------------------------- /tests/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_batch.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_cluster.py -------------------------------------------------------------------------------- /tests/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_collection.py -------------------------------------------------------------------------------- /tests/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_cursor.py -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_document.py -------------------------------------------------------------------------------- /tests/test_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_exception.py -------------------------------------------------------------------------------- /tests/test_foxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_foxx.py -------------------------------------------------------------------------------- /tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_graph.py -------------------------------------------------------------------------------- /tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_index.py -------------------------------------------------------------------------------- /tests/test_overload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_overload.py -------------------------------------------------------------------------------- /tests/test_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_permission.py -------------------------------------------------------------------------------- /tests/test_pregel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_pregel.py -------------------------------------------------------------------------------- /tests/test_replication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_replication.py -------------------------------------------------------------------------------- /tests/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_request.py -------------------------------------------------------------------------------- /tests/test_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_resolver.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tests/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_task.py -------------------------------------------------------------------------------- /tests/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_transaction.py -------------------------------------------------------------------------------- /tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_user.py -------------------------------------------------------------------------------- /tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_view.py -------------------------------------------------------------------------------- /tests/test_wal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arangodb/python-arango/HEAD/tests/test_wal.py --------------------------------------------------------------------------------