完整的python noob,我应该怎么做才能使用stringio?

时间:2018-11-06 01:10:34

标签: python

尝试运行一些我在阅读教程时看到的代码

import os, StringIO

filelist = [ f for f in os.listdir('.') if f.endswith(".shp") ]
for f in filelist:
    f_geo = f.replace(".shp", ".geojson")
    os.system('sudo ogr2ogr -f GeoJSON '+"smaller_geojson/"+f_geo+' '+f)

我收到此错误:

文件“ orgreshptogeojson.py”,第1行,在     导入操作系统,StringIO ImportError:没有名为“ StringIO”的模块

我在做什么错了?

0 个答案:

没有答案