博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
twitter——数据连接
阅读量:5054 次
发布时间:2019-06-12

本文共 2297 字,大约阅读时间需要 7 分钟。

 

(博客主亲自录制视频教程)

 

 

 

#测试报错 ConnectionError: HTTPSConnectionPool(host='stream.twitter.com', port=443): Max retries exceeded with url: /1.1/statuses/filter.json?delimited=length (Caused by NewConnectionError('
: Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。',) # -*- coding: utf-8 -*-"""Created on Fri Jan 13 15:58:57 2017@author: Administrator"""from tweepy import Streamfrom tweepy import OAuthHandlerfrom tweepy.streaming import StreamListener#consumer key, consumer secret, access token, access secret.#我申请的Twitter APIckey=" dbCYcztxFgLSELgqGj4yipViV"csecret="Cp5FHSlqkrVWb1ArJczYZFogF94sPEhfKvdw6IxfkcJMBIMDWk"atoken="819818506292105216-vxyIAC0GXhhCqVY94g7kfm9VkSSyqh9"asecret="hq8rbVf4cNYOJmVOeeAWiUrmuo6i4enVlnuty5ySeQKfl"class listener(StreamListener): def on_data(self, data): print(data) return(True) def on_error(self, status): print (status)auth = OAuthHandler(ckey, csecret)auth.set_access_token(atoken, asecret)twitterStream = Stream(auth, listener())twitterStream.filter(track=["car"])

 

豆荚加速器
twitter_api2.py 不停报错,不能正确连接Twitter, 蓝灯 完全连接不上

 
# -*- coding: utf-8 -*-"""Created on Sat Jan 14 11:11:46 2017@author: daxiongtwitter_api2.py"""from tweepy import Streamfrom tweepy import OAuthHandlerfrom tweepy.streaming import StreamListenerimport jsonimport sentiment_mod as s#consumer key, consumer secret, access token, access secret.ckey=" dbCYcztxFgLSELgqGj4yipViV"csecret="Cp5FHSlqkrVWb1ArJczYZFogF94sPEhfKvdw6IxfkcJMBIMDWk"atoken="819818506292105216-vxyIAC0GXhhCqVY94g7kfm9VkSSyqh9"asecret="hq8rbVf4cNYOJmVOeeAWiUrmuo6i4enVlnuty5ySeQKfl"#from twitterapistuff import *class listener(StreamListener):        def on_data(self, data):        		        all_data = json.loads(data)		        tweet = all_data["text"]		        sentiment_value= s.sentiment(tweet)		        print(tweet, sentiment_value)		        output = open("twitter-out.txt","a")		        output.write(sentiment_value)		        output.write('\n')		        output.close()		        return True    def on_error(self, status):        print(status)auth = OAuthHandler(ckey, csecret)auth.set_access_token(atoken, asecret)twitterStream = Stream(auth, listener())twitterStream.filter(track=["happy"])

 

转载于:https://www.cnblogs.com/webRobot/p/6283312.html

你可能感兴趣的文章
Cocos2d-x 3.0final 终结者系列教程10-画图节点Node中的Action
查看>>
简单理解kafka---核心概念
查看>>
assert用法
查看>>
ajaxFileUpload.js 上传后返回的数据不正确 -- clwu
查看>>
扒一扒spring,dom4j实现模拟实现读取xml
查看>>
公司培训lesson 1-代码质量
查看>>
JavaScript 仿LightBox内容显示效果
查看>>
python 字符串处理
查看>>
Do it early, do it often, do it automatically (转)
查看>>
Linux curl使用简单介绍
查看>>
CSDN可以直接扣扣登录.....如需查看我的博客去CSDN
查看>>
App弱网测试方式
查看>>
PHP zendstudio framework2配置过程
查看>>
Xor Sum 01字典树 hdu4825
查看>>
数据访问:三大范式
查看>>
Python基础-----random随机模块(验证码)
查看>>
手机端fixed底部跟着窗口动问题
查看>>
树专题(伸展树 / 树链剖分 / 动态树 学习笔记)
查看>>
HTML图像、超链接标签
查看>>
[国嵌攻略][164][USB驱动程序设计]
查看>>