0

使用 Couchdbkit(couchdb 的 python api)的任何人都遇到过与我相同的问题吗?

我用:

 $ couchapp push site http://localhost:5984/the_site

将网站上传到 couchdb 但就像我在 python 中所做的那样:

 >>> db = self.__serv.get_or_create_db("reports") 
 >>> designer.push('/path/to/site', db)

正在推送所有编码为 base64 的 _attachments。

有什么想法吗?

4

1 回答 1

0

当我修复上传脚本时,不再复制。

import os
from couchdbkit import Server, designer
__serv = Server(uri = 'http://192.168.11.13:5984')
website = os.path.join(os.getcwd(), "path_to_website")
database = __serv.get_or_create_db("website")
designer.push(website, database, atomic = False)
于 2014-12-04T19:42:04.417 回答