1 Star 0 Fork 12

raki0101/FinanceReportAnalysis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
财务摘要数据库处理.py 910 Bytes
一键复制 编辑 原始数据 按行查看 历史
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_cwzy')
# print({"SECCODE":str(scode),"year":year})
data=mgtable.find({},{"_id": 0,"SECNAME" : 1,
"SECCODE" : 1,
"f_kind" : 1,
"s_kind" : 1,
"t_kind" : 1,
"2019-06-30":1,
"2019-03-31": 1,
"2018-12-31": 1,
"2018-09-30": 1,
"2018-06-30":1,
"2018-03-31":1,
"2017-12-31":
})
# print(data[0])
return data
if __name__ == '__main__':
gd=getData()
for g in gd:
print(g)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/raki0101/FinanceReportAnalysis.git
git@gitee.com:raki0101/FinanceReportAnalysis.git
raki0101
FinanceReportAnalysis
FinanceReportAnalysis
master

搜索帮助