从arango导入ArangoClient导入错误:无法导入名称ArangoCustomer



我正在尝试运行一个python脚本,该脚本将数据发布在arangob中。运行脚本时出错Arangodb在我的本地主机上成功运行。

from arango import ArangoClient
# Initialize the ArangoDB client.
client = ArangoClient(hosts='http://192.168.0.34:8529')#IP OF THE WIFI
# Connect to "_system" database as root user.
# This returns an API wrapper for "_system" database.
sys_db = client.db('_system', username='root', password='ashu1995')
# Create a new database named "test" if it does not exist.
if not sys_db.has_database('test'):
sys_db.create_database('test')
# Connect to "test" database as root user.
# This returns an API wrapper for "test" database.
db = client.db('test', username='root', password='ashu1995')########
# Create a new collection named "students" if it does not exist.
# This returns an API wrapper for "students" collection.
if db.has_collection('students'):
students = db.collection('students')
else:
students = db.create_collection('students')
# Add a hash index to the collection.
students.add_hash_index(fields=['name'], unique=False)
# Truncate the collection.
students.truncate()
# Insert new documents into the collection.
students.insert({'name': 'jane', 'age': 19})
students.insert({'name': 'josh', 'age': 18})
students.insert({'name': 'jake', 'age': 21})
# Execute an AQL query. This returns a result cursor.
cursor = db.aql.execute('FOR doc IN students RETURN doc')
# Iterate through the cursor to retrieve the documents.
student_names = [document['name'] for document in cursor]

确保安装了python arango包,而不是arango软件包。

最新更新