在学习时,我们发现代码
from pygal.i18n import COUNTRIES
for country_code in sorted(COUNTRIES.keys()):
print(country_code, COUNTRIES[country_code])
运行报错
<img src="http://upload-images.jianshu.io/upload_images/6035053-70b7e46710249688.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" alt="" />
原因是
COUNTRIES已经不在pygal.i18n模块里了,而是在pygal.maps.world模块里
用命令行 pip install pygal_maps_world
再修改一下代码
from pygal.maps.world import COUNTRIES
for country_code in sorted(COUNTRIES.keys()):
print(country_code, COUNTRIES[country_code])
结果:
没毛病
ok!
还没完
在运行代码
wm = pygal.Worldmap()
又出错了!
再修改一下下
wm = pygal.maps.world.World()
就行了
要注意的是 在现在的 pygal 里面 maps 原有的功能被划分到了 maps.world里面