I am attempting to use the PyArango driver for ArangoDB. I am using Python 3.5.2 for Windows (that is what is provided by my organization) and ArangoDB 3.0 running locally on my computer.
I run the following in the python interactive shell (or in a script):
from pyArango.connection import *
myConnection = Connection()
When the Connection() line is evaluated the following is output to the console:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\xxxxx\AppData\Local\Programs\Python\Python35-32\lib\site-packages\pyArango\connection.py", line 88, in __init__
self.reload()
File "C:\Users\xxxxx\AppData\Local\Programs\Python\Python35-32\lib\site-packages\pyArango\connection.py", line 107, in reload
data = r.json()
File "C:\Users\xxxxx\AppData\Local\Programs\Python\Python35-32\lib\site-packages\requests\models.py", line 812, in json
return complexjson.loads(self.text, **kwargs)
File "C:\Users\xxxxx\AppData\Local\Programs\Python\Python35-32\lib\json\__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "C:\Users\xxxxx\AppData\Local\Programs\Python\Python35-32\lib\json\decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "C:\Users\xxxxx\AppData\Local\Programs\Python\Python35-32\lib\json\decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
The online tutorial/Documentation at https://www.arangodb.com/tutorials/tutorial-python/ and https://github.com/tariqdaouda/pyArango indicates support for ArangoDB 3.x and Python 3.4. Has enyone else encountered this problem attempting to use Python 3.5 with the pyArango driver? If so is there a resolution to this issue?
Thanks