我正在尝试为RethinkDB API创建一个包装器模块,并且在导入我的类(称为rethinkdb.py)时遇到了AttributeError。我在拥有共享文件夹' Github'
的虚拟机中工作。我在IPython控制台中执行此操作:
import library.api.rethinkdb as re
这是错误:
追踪(最近一次呼叫最后一次):
文件"",第1行,in 将library.api.rethinkdb导入为re
File" /media/sf_GitHub/library/api/rethinkdb.py" ;,第51行, 在 conn = Connection()。connect_to_database()
File" /media/sf_GitHub/library/api/rethinkdb.py" ;,第48行, 在connect_to_database中 提高e
AttributeError:' module'对象没有属性' connect'
这是代码:
import rethinkdb as r #The downloaded RethinkDB module from http://rethinkdb.com/
class Connection(object):
def __init__(self, host='127.0.0.1', port=28015, database=None, authentication_key=''):
self.host = host
self.port = port
if database is None:
self.db = 'test'
self.auth_key = authentication_key
def connect_to_database(self):
try:
conn = r.connect(self.host, self.port, self.db, self.auth_key)
except Exception, e:
raise e
return conn
conn = Connection().connect_to_database()
答案 0 :(得分:2)
我今天遇到了类似的情况,我注意到作者在以后的版本中更改了API的基本行为。
根据我在计算机上进行的测试:
v2.3.0
import rethinkdb as r
r.connect()
v2.4.1
import rethinkdb as r
rdb = r.RethinkDB()
rdb.connect()
答案 1 :(得分:0)
当我跑步时它对我有用:
import rethinkdb as rdb
r = rdb.RethinkDB()
r.connect('localhost', 28015).repl()