我刚开始使用Phoenix时,发现了这个适用于python的适配器。
import phoenixdb
import phoenixdb.cursor
database_url = 'http://localhost:8765/'
conn = phoenixdb.connect(database_url, autocommit=True)
上面提到的是要连接的连接字符串。 但是此连接字符串没有作为用户标识或密码的身份验证吗?
我也没有在他们的文档页面中找到任何线索:https://python-phoenixdb.readthedocs.io/en/latest/
我的问题是,它仅需要db_url进行连接还是有任何方法可以实现身份验证?