コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
4631 ビュー

I am trying to create a product.template. The product name contains accent marks from the source database I am importing from. These appear to be causing an issue. Has anyone else ran into this and what is the solution? No matter what I do I can't seem to fix this issue.  I even tried encoding it like row['product_nm'].encode('utf8').

Product Name Example:Super Café (Notice the accent e)

Traceback (most recent call last):

File "import_products.py", line 180, in <module>

template_id=sock.execute(dbname, uid,pwd, 'product.template','create',product_template)

File "/usr/lib/python2.7/xmlrpclib.py", line 1224, in __call__

return self.__send(self.__name, args)

File "/usr/lib/python2.7/xmlrpclib.py", line 1578, in __request

verbose=self.__verbose

File "/usr/lib/python2.7/xmlrpclib.py", line 1264, in request

return self.single_request(host, handler, request_body, verbose)

File "/usr/lib/python2.7/xmlrpclib.py", line 1312, in single_request

response.msg,

xmlrpclib.ProtocolError: <ProtocolError for localhost:8069/xmlrpc/object: 500 INTERNAL SERVER ERROR>

アバター
破棄
著作者 最善の回答

I believe I figured out my problem. The character was 8859 and needed to be decode and then encoded in utf8

product_name = product_name.decode('8859').encode('utf8'


Once this change was made it worked.

アバター
破棄
関連投稿 返信 ビュー 活動
3
7月 25
2921
1
10月 24
2099
1
4月 24
2166
0
9月 23
1665
1
6月 23
2171