Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dataabc authored Apr 30, 2020
1 parent c25a648 commit a56e13e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
**微博信息**
- 微博id:微博唯一标志
- 微博内容:微博正文
- 头条文章url:微博中头条文章的url,若微博中不存在头条文章,则值为''
- 原始图片url:原创微博图片和转发微博转发理由中图片的url,若某条微博存在多张图片,每个url以英文逗号分隔,若没有图片则值为"无"
- 视频url: 微博中的视频url,若微博中没有视频,则值为"无"
- 微博发布位置:位置微博中的发布位置
Expand Down Expand Up @@ -302,6 +303,7 @@ MySQL和MongDB数据库的写入内容一样。程序首先会创建一个名为
**id**:存储微博id;<br>
**user_id**:存储微博发布者的用户id,如"1669879400";<br>
**content**:存储微博正文;<br>
**article_url**:存储微博中头条文章的url,若微博中不存在头条文章,则值为'';<br>
**original_pictures**:存储原创微博的原始图片url和转发微博转发理由中的图片url。若某条微博有多张图片,则存储多个url,以英文逗号分割;若某微博没有图片,则值为"无";<br>
**retweet_pictures**:存储被转发微博中的原始图片url。当最新微博为原创微博或者为没有图片的转发微博时,则值为"无",否则为被转发微博的图片url。若有多张图片,则存储多个url,以英文逗号分割;<br>
**publish_place**:存储微博的发布位置。如果某条微博没有位置信息,则值为"无";<br>
Expand Down Expand Up @@ -361,6 +363,7 @@ $ python weibospider.py
若目标微博用户存在微博,则:<br>
**id**:存储微博id。如wb.weibo[0]['id']为最新一条微博的id;<br>
**content**:存储微博正文。如wb.weibo[0]['content']为最新一条微博的正文;<br>
**article_url**:存储微博中头条文章的url。如wb.weibo[0]['article_url']为最新一条微博的头条文章url,若微博中不存在头条文章,则值为'';<br>
**original_pictures**:存储原创微博的原始图片url和转发微博转发理由中的图片url。如wb.weibo[0]['original_pictures']为最新一条微博的原始图片url,若该条微博有多张图片,则存储多个url,以英文逗号分割;若该微博没有图片,则值为"无";<br>
**retweet_pictures**:存储被转发微博中的原始图片url。当最新微博为原创微博或者为没有图片的转发微博时,则值为"无",否则为被转发微博的图片url。若有多张图片,则存储多个url,以英文逗号分割;<br>
**publish_place**:存储微博的发布位置。如wb.weibo[0]['publish_place']为最新一条微博的发布位置,如果该条微博没有位置信息,则值为"无";<br>
Expand Down

0 comments on commit a56e13e

Please sign in to comment.