pyArango
pyArango copied to clipboard
Python Driver for ArangoDB with built-in validation
When running the Arango as docker with certificate (self-signed) I get the following error: ``` Traceback (most recent call last): File "connect.py", line 8, in conn = Connection(arangoURL="https://my_url:8529", username="root", password="Aa123",...
Currently, when installing this package with pip, setup.py is used or a wheel gets built if package 'wheel' is installed. Would it be possible to provide pre-built wheel?
The method `Collection.action` is meant to allow access to the ArangoDB HTTP endpoints that do not have a dedicated method in `Collection`. However, the method always sends an empty request...
CONN = Connection(username="root", password="...") DB = CONN["DB"] DB.dropAllCollections() doe snot really drop collection, until CONN object exists if you write again CONN = Connection(username="root", password="...") DB = CONN["DB"] you found...
Hi I have used pyArango library to access Aranogdb The connection is established Is there a method that will disconnect the connection that is established so that I don't have...
Code: networks = ["co", "mg", "ne", "no", "rj", "sul"] edges = [] for network in networks: edges_collection_name = network + "_edges" node_collection_name = network + "_routers" print edges.append(EdgeDefinition(edges_collection_name, fromCollections=[node_collection_name], toCollections=[node_collection_name]))...
Code to reproduce: ```` def BulkJSONImport(): conn = Connection(arangoURL=arango_url, username=arango_username, password=arango_password, verbose=True) try: db = conn["master"] print("DB is connected: ", db) except: db = conn.createDatabase(name="master") print("DB is created: ", db)...
Python2 has no more support, why this library should keep this compatibility? I think the next versions of this library `>= 3` should get rid of python2 support. Related docs:...
ensureGeoIndex creates geo indexes with geoJson set to false How much is this client maintained? I see almost no activity within the last year.
Can someone explain how to do connection pooling in pyArango? It doesn't look like there's any documentation for this and I would imagine this to be a common ask.