Python ModuleNotFound urllib2

时间:2019-12-18 00:34:51

标签: python python-3.x

我当前正在运行Python 3.8.0。

我有一个程序,但是执行该程序时,我收到一个ModuleNotFoundError,它指向'urllib2'

我已尝试解决此问题,因为这似乎很常见,但无法弄清楚我会卡在哪里。任何帮助,将不胜感激。下面是错误和Python代码。

enter image description here

#!/usr/bin/env python

from __future__ import print_function
from urllib.request import urlopen
import json

def main():
    ip = json.loads(urlopen('https://ifconfig.co/json').read())['ip']
    print(json.dumps({'ip': ip + '/32'}))


if __name__ == '__main__':
    main()

0 个答案:

没有答案