• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell
您的位置:首页 > 脚本语言 >python > Python 获取新浪微博的最新公共微博实例分享

Python 获取新浪微博的最新公共微博实例分享

作者:hebedich 字体:[增加 减小] 来源:互联网

hebedich 通过本文主要向大家介绍了python新浪微博爬虫,python爬取新浪微博,python新浪微博,新浪sae python,python实例等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com

API:

statuses/public_timeline  返回最新的200条公共微博,返回结果非完全实时

CODE:

#!/usr/bin/python 
# -*- coding: utf-8 -*-

'''
Created on 2014-7-3
@author: guaguastd
@name: statuses_public_timeline.py
'''

def public_timeline(weibo_api, count):
 
 #public_timeline = weibo_api.statuses.public_timeline.get(count=count)
 public_timeline = weibo_api.statuses__public_timeline(count=count) 
 statuses = public_timeline['statuses']
 return statuses

if __name__ == '__main__':
 
 # import json
 import json
 
 # import login, 
 from login import weibo_login

 # get the twitter access api
 weibo_api = weibo_login()
 
 # get the new 200 weibo
 content = public_timeline(weibo_api, 200)
 print json.dumps(content, indent=1)
</div>


RESULT:

['cc7c9d31fc797802960c84822c3654f3']
[
 {
 "reposts_count": 0, 
 "truncated": false, 
 "text": "\u5982\u679c\u4f60\u4e5f\u6709\u75d8\u75d8 \u75d8\u5370 \u6bdb\u5b54\u7c97\u5927 \u6697\u6c89\u6591\u70b9 \u5e72\u71e5 \u7ea2\u8840\u4e1d \u51fa\u6cb9\u9ed1\u5934 \u9ed1\u773c\u5708 \u773c\u888b \u62a4\u7406 \u51cf\u80a5 \u7b49\u7b49\u53ef\u4ee5\u52a0\u8001\u5e08QQ:1817712253\u4e00\u8d77\u5b66\u4e60", 
 "visible": {
 "type": 0, 
 "list_id": 0
 }, 
 "in_reply_to_status_id": "", 
 "bmiddle_pic": "http://ww3.sinaimg.cn/bmiddle/d1a02cb3jw1ehz8g6t1m6j20c90cdq3n.jpg", 
 "id": 3728143255299328, 
 "thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/d1a02cb3jw1ehz8g6t1m6j20c90cdq3n.jpg", 
 "mid": "3728143255299328", 
 "source": "<a href=\"http://app.weibo.com/t/feed/3auC5p\" rel=\"nofollow\">\u76ae\u76ae\u65f6\u5149\u673a</a>", 
 "attitudes_count": 0, 
 "in_reply_to_screen_name": "", 
 "pic_urls": [
 {
 "thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/d1a02cb3jw1ehz8g6t1m6j20c90cdq3n.jpg"
 }
 ], 
 "in_reply_to_user_id": "", 
 "darwin_tags": [], 
 "favorited": false, 
 "original_pic": "http://ww3.sinaimg.cn/large/d1a02cb3jw1ehz8g6t1m6j20c90cdq3n.jpg", 
 "idstr": "3728143255299328", 
 "user": {
 "bi_followers_count": 252, 
 "domain": "", 
 "avatar_large": "http://tp4.sinaimg.cn/3516935347/180/40057950890/0", 
 "verified_source": "", 
 "ptype": 0, 
 "statuses_count": 419, 
 "allow_all_comment": true, 
 "id": 3516935347, 
 "verified_reason_url": "", 
 "city": "1", 
 "province": "43", 
 "block_app": 0, 
 "follow_me": false, 
 "verified_reason": "", 
 "followers_count": 420, 
 "location": "\u6e56\u5357 \u957f\u6c99", 
 "verified_trade": "", 
 "mbtype": 0, 
 "verified_source_url": "", 
 "profile_url": "u/3516935347", 
 "block_word": 0, 
 "avatar_hd": "http://ww3.sinaimg.cn/crop.54.22.120.120.1024/d1a02cb3gw1ehkk32gwyfj205k05k3yq.jpg", 
 "star": 0, 
 "description": "", 
 "friends_count": 1085, 
 "online_status": 0, 
 "mbrank": 0, 
 "allow_all_act_msg": false, 
 "profile_image_url": "http://tp4.sinaimg.cn/3516935347/50/40057950890/0", 
 "idstr": "3516935347", 
 "verified": false, 
 "geo_enabled": true, 
 "class": 1, 
 "screen_name": "\u8425\u517b\u7f8e\u5bb9\u8bb2\u5e08\u5c0f\u8fea", 
 "lang": "zh-cn", 
 "weihao": "", 
 "remark": "", 
 "favourites_count": 0, 
 "name": "\u8425\u517b\u7f8e\u5bb9\u8bb2\u5e08\u5c0f\u8fea", 
 "url": "", 
 "gender": "f", 
 "created_at": "Fri Jun 07 10:40:15 +0800 2013", 
 "worldcup_guess": 0, 
 "verified_type": -1, 
 "following": false
 }, 
 "geo": null, 
 "created_at": "Thu Jul 03 07:01:20 +0800 2014", 
 "mlevel": 0, 
 "comments_count": 1
 }, 
 {
 "reposts_count": 0, 
 "truncated": false, 
 "text": "\u301012\u661f\u5ea7\u8001\u516c\u7684\u4f18\u70b9\u3011\u767d\u7f8a\uff1a\u4fdd\u62a4\u4f60\u7684\u52c7\u58eb\uff1b\u91d1\u725b\uff1a\u4e0d\u6d6a\u8d39\u3001\u4e13\u4e00\uff1b\u53cc\u5b50\uff1a\u806a\u660e\u5e7d\u9ed8\uff1b\u5de8\u87f9\uff1a\u6e29\u67d4\u4f53\u8d34\uff1b\u72ee\u5b50\uff1a\u80fd\u4f9d\u9760\u7684\u5927\u6811\uff1b\u5904\u5973\uff1a\u7231\u505a\u5bb6\u52a1\uff1b\u5929\u79e4\uff1a\u813e\u6c14\u6e29\u548c\uff1b\u5929\u874e\uff1a\u5584\u89e3\u4eba\u610f\uff1b\u5c04\u624b\uff1a\u70ed\u60c5\u5927\u5ea6\uff1b\u6469\u7faf\uff1a\u8d23\u4efb\u611f\uff0c\u6301\u5bb6\uff1b\u6c34\u74f6\uff1a\u5236\u9020\u6d6a\u6f2b\uff1b\u53cc\u9c7c\uff1a\u542c\u8bdd", 
 "visible": {
 "type": 0, 
 "list_id": 0
 }, 
 "in_reply_to_status_id": "", 
 "bmiddle_pic": "http://ww3.sinaimg.cn/bmiddle/005z8hcejw1ehz8g6u4jfj30f20m8mzr.jpg", 
 "id": 3728143254878451, 
 "thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/005z8hcejw1ehz8g6u4jfj30f20m8mzr.jpg", 
 "mid": "3728143254878451", 
 "source": "<a href=\"http://app.weibo.com/t/feed/3auC5p\" rel=\"nofollow\">\u76ae\u76ae\u65f6\u5149\u673a</a>", 
 "attitudes_count": 0, 
 "in_reply_to_screen_name": "", 
 "pic_urls": [
 {
 "thumbnail_pic": "http://ww3.sinaimg.cn/thumbnail/005z8hcejw1ehz8g6u4jfj30f20m8mzr.jpg"
 }
 ], 
 "in_reply_to_user_id": "", 
 "darwin_tags": [], 
 "favorited": false, 
 "original_pic": "http://ww3.sinaimg.cn/large/005z8hcejw1ehz8g6u4jfj30f20m8mzr.jpg", 
 "idstr": "3728143254878451", 
 "user": {
 "bi_followers_count": 6, 
 "domain": "", 
 "avatar_large": "http://tp3.sinaimg.cn/5099808650/180/5693729982/0", 
 "verified_source": "", 
 "ptype": 0, 
 "statuses_count": 838, 
 "allow_all_comment": true, 
 "id": 5099808650, 
 "verified_reason_url": "", 
 "city": "5", 
 "province": "11", 
 "block_app": 0, 
 "follow_me": false, 
 "verified_reason": "", 
 "followers_count": 170, 
 "location": "\u5317\u4eac \u671d\u9633\u533a", 
 "verified_trade": "", 
 "mbtype": 0, 
 "verified_source_url": "", 
 "profile_url": "u/5099808650", 
 "block_word": 0, 
 "avatar_hd": "http://ww3.sinaimg.cn/crop.0.0.170.170.1024/005z8hcejw1efwksyxddwj304q04qa9x.jpg", 
 "star": 0, 
 "description": "", 
 "friends_count": 561, 
 "online_status": 0, 
 "mbrank": 0, 
 "allow_all_act_msg": false, 
 "profile_image_url": "http://tp3.sinaimg.cn/5099808650/50/5693729982/0", 
 "idstr": "5099808650", 
 "verified": false, 
 "geo_enabled": true, 
 "class": 1, 
 "screen_name": "\u7231\u5c31\u4e0d\u6015\u5371\u9669", 
 "lang": "zh-cn", 
 "weihao": "", 
 "remark": "", 
 "favourites_count": 0, 
 "name": "\u7231\u5c31\u4e0d\u6015\u5371\u9669", 
 "url": "", 
 "gender": "f", 
 "created_at": "Tue Apr 29 17:10:14 +0800 2014", 
 "worldcup_guess": 0, 
 "verified_type": -1, 
 "following": false
 }, 
 "geo": null, 
 "created_at": "Thu Jul 03 07:01:20 +0800 2014", 
 "mlevel": 0, 
 "comments_count": 0
 }, 
 {
 "darwin_tags": [], 
 "favorited": false, 
 "mid": "3728143254878339", 
 "in_reply_to_user_id": "", 
 "truncated": false, 
 "text": "\u90ed\u5fb7\u7eb2 \u4e8e\u8c26 2012\u6211\u8981\u5e78\u798f http://t.cn/z0kupX1", 
 "created_at": "Thu Jul 03 07:01:20 +0800 2014", 
 "mlevel": 0, 
 "reposts_count": 0, 
 "idstr": "3728143254878339", 
 "visible": {
 "type": 0, 
 "list_id": 0
 }, 
 "attitudes_count": 0, 
 "pic_urls": [], 
 "in_reply_to_screen_name": "", 
 "user": {
 "bi_followers_count": 14, 
 "domain": "", 
 "avatar_large": "http://tp4.sinaimg.cn/5119417731/180/5696057764/1", 
 "verified_source": "", 
 "ptype": 0, 
 "statuses_count": 144, 
 "allow_all_comment": true, 
 "id": 5119417731, 
 "verified_reason_url": "", 
 "city": "1000", 
 "province": "100", 
 "block_app": 0, 
 "follow_me": false, 
 "verified_reason": "", 
 "followers_count": 137, 
 "location": "\u5176\u4ed6", 
 "verified_trade": "", 
 "mbtype": 0, 
 "verified_source_url": "", 
 "profile_url": "u/5119417731", 
 "block_word": 0, 
 "avatar_hd": "http://ww2.sinaimg.cn/crop.0.0.120.120.1024/005AsypJjw1egrq4a029bj303c03ct8j.jpg", 
 "star": 0, 
 "description": "\u4e16\u754c\u4e0a\u90a3\u4e9b\u6700\u5bb9\u6613\u7684\u4e8b\u60c5\u4e2d\uff0c\u62d6\u5ef6\u65f6\u95f4\u6700\u4e0d\u8d39\u529b\u3002", 
 "friends_count": 183, 
 "online_status": 0, 
 "mbrank": 0, 
 "allow_all_act_msg": false, 
  


 

您可能想查找下面的文章:

  • 用Python编写简单的微博爬虫
  • 基于python编写的微博应用
  • Python 获取新浪微博的最新公共微博实例分享
  • 使用Python进行新浪微博的mid和url互相转换实例(10进制和62进制互算)
  • python模拟新浪微博登陆功能(新浪微博爬虫)

相关文章

  • python同义词替换的实现(jieba分词)
  • Python编程之多态用法实例详解
  • Python字符遍历的艺术
  • Python判断操作系统类型代码分享
  • 微信 用脚本查看是否被微信好友删除
  • python实现的守护进程(Daemon)用法实例
  • Python 专题五 列表基础知识(二维list排序、获取下标和处理txt文本实例)
  • Python使用cookielib模块操作cookie的实例教程
  • Python设计模式中单例模式的实现及在Tornado中的应用
  • python 读写、创建 文件的方法(必看)

文章分类

  • vbs
  • DOS/BAT
  • hta/htc
  • python
  • perl
  • VBA
  • ColdFusion
  • ruby
  • PowerShell
  • Lua
  • Golang
  • linux shell

最近更新的内容

    • python中的内置函数getattr()介绍及示例
    • python中查找excel某一列的重复数据 剔除之后打印
    • Python简单计算文件夹大小的方法
    • 利用Python绘制MySQL数据图实现数据可视化
    • Python的Flask站点中集成xhEditor文本编辑器的教程
    • python显示生日是星期几的方法
    • Python中删除文件的程序代码
    • 详解Python中的变量及其命名和打印
    • Python连接mssql数据库编码问题解决方法
    • Python运算符重载用法实例分析

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有