Python Twitter

授权协议 Apache
开发语言 Python
所属分类 建站系统、 开源微博工具
软件类型 开源软件
地区 不详
投 递 者 子车才捷
操作系统 Linux
开源组织
适用人群 未知
 软件概览

python-twitter“围绕 Twitter API 及 twitter 数据模型的一个 python 包装程序”。现在已经有几个库可以通过多种语言与 Twitter 的服务交互 — 从 Ruby 到 Eiffel,几乎任何语言。目前,有五个库可以交互 Python 与 Twitter,它们是 DeWitt Clinton 的 Python-twitter、Andrew Price 的 python-twyt、Dustin Sallings 的 twitty-twister、Ryan McGrath 的 twython 以及 Josh Roesslein 的 Tweepy。

python-twitter 库需要依赖项 simplejson

  • 我在用Python在Twitter上做一个关于用户社交关系的研究。在 问题是“什么是最快的方式抓取某个用户的关注者信息” 我搜索了很多信息,目前正在使用Tweepy:c = tweepy.Cursor(api.followers_ids, id=centre, count=5000).items() while True: try: followers_ids_list.append(c.next

  • by Lucas Kohorst 卢卡斯·科斯特(Lucas Kohorst) 使用Python在Twitter上进行基本数据分析 (Basic data analysis on Twitter with Python) After creating the Free Wtr bot using Tweepy and Python and this code, I wanted a way to

  • CODE: #!/usr/bin/python # -*- coding: utf-8 -*- ''' Created on 2014-8-5 @author: guaguastd @name: analyze_favorite_tweet.py ''' if __name__ == '__main__': # import json #import json

  • import requests import re from urllib.request import urlretrieve import os import ssl ssl._create_default_https_context = ssl._create_unverified_context res=requests.session() prox={ #如有合适的代理可以放在这里 }