您好,我正在尝试 Odoo 的外部 API,所以我正在尝试一些东西,但是当我尝试启动我的 main.py 时出现错误。
import xmlrpc.client
info = xmlrpc.client.ServerProxy('https://demo.odoo.com/start').start()
url, db, username, password = \
info['host'], info['database'], info['user'], info['password']
common = xmlrpc.client.ServerProxy('{}/xmlrpc/2/common'.format(url))
common.version()
但是当我启动这个文件时,我有这个输出:
python main.py
Traceback (most recent call last):
File "main.py", line 1, in <module>
import xmlrpc.client
ImportError: No module named xmlrpc.client
有人能帮助我吗 ?提前感谢!