
爬虫工程师
niubiqigai
nlp开发
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MongoDB数据的增删改查
MongoDB数据的增删改查 说到MongoDB的增删改查,首先要知道MongoDB中的三要素 数据库,相似于mysql中的数据库 集合,相似于mysql中的表 文档,相似于mysql中表的记录 一、插入数据 db.集合名称.insert(document) db.stu.insert({name:'小龙女',gender:1}) db.stu.insert({_id:"2...原创 2018-09-12 19:35:45 · 1283 阅读 · 0 评论 -
使用Scrapy时遇到:UserWarning: You do not have a working installation of the service_identity module
当我们使用scrapy进行爬虫项目的操作时,出现如下错误: UserWarning: You do not have a working installation of the service_identity module: ‘cannot import name ‘opentype’’. Please install it from https://pypi.python.org/pypi/...原创 2018-09-23 22:49:17 · 1435 阅读 · 0 评论