fundDict ={} # 添加自动到需要fundDict fundDict.update(fundInfoData) # 防止中文出现问题 dictJs = json.dumps(fundDict, ensure_ascii=False) file = open('../data/' + fundCode + '.txt', 'w', encoding='utf-8') file.write(dictJs) file.close()
fundDict ={} # 添加自动到需要fundDict fundDict.update(fundInfoData) # 防止中文出现问题 dictJs = json.dumps(fundDict, ensure_ascii=False) file = open('../data/' + fundCode + '.txt', 'w', encoding='utf-8') file.write(dictJs) file.close()
最近发现了一个小BUG, 就是用pycharm写几个小爬虫,发现有100多个console无法关闭.后来简单Google后, 操作如下. 点击菜单栏Run, 右键Run, 点击Edit 进入窗口后, 选择Templates, 选择Python 在Execution里面 把Runwith Python Consloe去掉