shell
echo008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
利用python向mongo数据库导入csv数据
安装 pandas 和 pymongopip install pandas -i https://pypi.tuna.tsinghua.edu.cn/simplepip install pymongo -i https://pypi.tuna.tsinghua.edu.cn/simpleimport pandas as pdfrom pymongo import MongoClient# mongodb://localhost/ 数据库连接地址client = MongoClien..原创 2020-06-08 19:58:14 · 1131 阅读 · 1 评论 -
根据已有.submodules构建项目自动添加python脚本
新项目使用import configparserimport osconfig = configparser.ConfigParser()config.read('.gitmodules')sections = config.sections()for section in sections: path = config[section]['path'] url = config[section]['url'] cmd = 'git submodule add {} {.原创 2020-06-08 19:40:47 · 329 阅读 · 0 评论
分享