
python
文章平均质量分 50
beiigang_126_com
学习 记录 备查 分享
展开
-
ubuntu上跑python连接pg,报错 ImportError: No module named psycopg2
ubuntu上跑python连接pg,报错 ImportError: No module named psycopg2root@pgproxy1:~# python /home/zxw/PGWriterTest_m.py Traceback (most recent call last): File "/home/zxw/PGWriterTest_m.py", line 4原创 2014-11-03 18:14:13 · 10613 阅读 · 0 评论 -
python连接mongodb简明教程
这篇没有找到原出处import pymongocon = pymongo.Connection('localhost', 27017)mydb = con.mydb # new a databasemydb.add_user('test', 'test') # add a usermydb.authenticate('test', 'test') # check authm转载 2015-02-13 20:23:29 · 13007 阅读 · 0 评论