1 Star 0 Fork 12

raki0101/FinanceReportAnalysis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
数据处理入库.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
Lina 提交于 2019-08-19 20:10 . Signed-off-by: GallenQiu poloszu@163.com
# -*- coding : utf-8 -*- #
__author__ = "Gallen_qiu"
import pymongo
from locale import *
# locale.setlocale( locale.LC_ALL, 'en_US.UTF-8' )
from pymongo.collection import Collection
def getData():
# 建立连接
client = pymongo.MongoClient('localhost', 27017)
# 建立数据库
db = client["XinlangFinance"]
# 从原有的txt文件导入share_id:
# 表的对象化
mgtable = Collection(db, 'FinanceReport_data')
# print({"SECCODE":str(scode),"year":year})
data=mgtable.find({},{"_id": 0})
# print(data[0])
return data
if __name__ == '__main__':
gd=getData()
ol=[]
for d in gd:
for n in d:
try:
if n == "SECCODE":
pass
else:
d[n]=float(d[n].replace(",",""))
except:
pass
# print(d)
ol.append(d)
try:
# 建立连接
client = pymongo.MongoClient('localhost', 27017)
# 建立数据库
db = client["XinlangFinance"]
# 从原有的txt文件导入share_id:
# 表的对象化
mgtable = Collection(db, 'FinanceReport_data2')
mgtable.insert_many(ol)
except:
print("写入出错!!")
pass
# print(gd)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/raki0101/FinanceReportAnalysis.git
git@gitee.com:raki0101/FinanceReportAnalysis.git
raki0101
FinanceReportAnalysis
FinanceReportAnalysis
master

搜索帮助