我是PostgreSQL和odo
的新手。我创建了以下内容:(我正在使用Ubuntu)。
我已经创建了超级用户 testuser
并且使用此用户(角色)我创建了postgresql数据库testuser
(通过运行psql
然后创建数据库TESTUSER)。在此数据库中有一个名为testtable
的表。使用psycopg2
插入此数据库时没有任何问题。但是我遇到了python的odo
模块。由于我的目标是将some_file.csv
加载到postgresql数据库中,我以为我会使用它。用法似乎相当简单
import odo
odo.odo('some_file.csv', 'postgresql://testuser:<password>@127.0.0.1:5432/testuser::testtable')
但它不起作用,我得到了
NotImplementedError: Unable to parse uri to data resource: postgresql://testuser:<password>@localhost:5432/testuser
注意:而不是<password>
我有testuser的密码。
也许显而易见并且我必须实现它..(如在最后一段here中),但我认为支持postgresql(因为postgresql在那里被提到过几次,用例子)。 我试图在连接URI下查看here,但找不到错误。 here是odo文档。
答案 0 :(得分:2)
我使用odo
将csv文件插入postgresql,因此支持它。您的连接URI和代码与我的基本相同。您是否安装了sqlalchemy
包?我相信odo
在后台同时使用sqlalchemy
和psycopg2
。我能够在未安装sqlalchemy
的系统上复制您的错误,并且安装sqlalchemy
让我超越了错误。