Python Eve UnicodeDecodeError

时间:2017-09-22 20:06:15

标签: python rest pycharm eve

我正在尝试运行基本的前夕应用程序。此页面上有一个示例:http://eve.readthedocs.io/en/stable/quickstart.html。我在PyCharm中创建了这两个.py文件的项目: run.py

get_result

settings.py

from eve import Eve
app = Eve()

if __name__ == '__main__':
    app.run()

我经常遇到这个错误:

DOMAIN = {'people': {}}

ps:我得到了Python 3.6 32位

1 个答案:

答案 0 :(得分:0)

行:hostname,aliases,ipaddrs = gethostbyaddr(name)抛出UnicodeDecodeError,因为我的主机名是“Džida”。我将主机名更改为没有特殊字符的名称,现在一切正常。