arangodb / adb-cloud-connector

Access to temporary ArangoDB Cloud instances

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ArangoDB Cloud Connector

build CodeQL Last commit

PyPI version badge Python versions badge

License Code style: black Downloads

Provides access to temporary ArangoDB Cloud instance provisioning, for graph and beyond.

Installation

Latest Release

pip install adb-cloud-connector

Current State

pip install git+https://github.com/arangodb/adb_cloud_connector.git

Quickstart

from adb_cloud_connector import get_temp_credentials

con = get_temp_credentials()

print(con)

Assuming you have python-arango installed, you can then do the following:

# pip install python-arango
from arango import ArangoClient

db = ArangoClient(hosts=credentials["url"]).db(
    credentials["dbName"], credentials["username"], credentials["password"], verify=True
)

Development & Testing

  1. git clone https://github.com/arangodb/adb_cloud_connector.git
  2. cd adb_cloud_connector
  3. (create virtual environment of choice)
  4. pip install -e .[dev]
  5. pytest

About

Access to temporary ArangoDB Cloud instances

License:Apache License 2.0


Languages

Language:Python 100.0%