tweepy

    0熱度

    1回答

    我寫了這個代碼來獲取Twitter帳戶的追隨者的完整列表使用Tweepy: # ... twitter connection and streaming fulldf = pd.DataFrame() line = {} ids = [] try: for page in tweepy.Cursor(api.followers_ids, screen_name="twitter

    -3熱度

    1回答

    我跑這個簡單的.py: from tweepy import Stream from tweepy import OAuthHandler from tweepy.streaming import StreamListener ckey = '' csecret = '' atoken = '' asecret = '' class Listener(StreanListener)

    0熱度

    1回答

    with open('twit/example.json', encoding='utf8') as json_data: for line in json_data: try: dataText = json.loads(line) except ValueError: continue for a in dataText:

    0熱度

    1回答

    我有一個包含推特ID列表的文件,我想要檢索這些推文。該文件包含超過10萬個微博和Twitter的API允許僅檢索100 api = tweepy.API(auth) good_tweet_ids = [i for i in por.TweetID[0:100]] tweets = api.statuses_lookup(good_tweet_ids) for tweet in tweets:

    1熱度

    1回答

    此代碼將搜索具有特定關鍵字的推文,並提取與我的CSV文件中的關鍵字集相匹配的最相關的推文。 import tweepy from tweepy.streaming import StreamListener from tweepy import OAuthHandler from tweepy import Stream import pandas as pd import nltk

    0熱度

    1回答

    我使用Tweepy python庫來實現twitter API。至於授權,我正在使用tweepy.OAuthHandler。在此之前,我創建了一個Twitter應用程序。 我有一些推特ID(來自公共數據集)的一些Twitter的帖子沒有原來的用戶。我想使用tweetID獲取用戶screen_name/UserID。這裏是我的僞代碼: import tweepy import json auth

    0熱度

    1回答

    這是我的代碼: mediaID = 877121579854856193L print mediaID response = "here's a pic" b = api.send_media(user_id =status.direct_message['sender_id'], text =response, attachment={'type':'media','media_id': med

    0熱度

    1回答

    好吧,我正在搜索三個#標籤#data #visualization #nfl。它通過瀏覽器完成工作,但當我使用Tweepy時不起作用。它只在我搜索兩個井號標籤時才起作用。可以是'#data #visualisation'或'#data #nfl'。我在這裏錯過了什麼?

    1熱度

    2回答

    我想提取我的情感分析項目的主題標籤,但是我收到了一個包含所有標籤以及它們在推文中的索引的字典列表。我只想要文字。 我的代碼: data = tweepy.Cursor(api.search, q, since=a[i], until=b[i]).items() tweet_data = [] tweets = pd.DataFrame() tweets['Tweet_

    0熱度

    1回答

    每個項目組的鳴叫計數我有一個問題,並不能得到一個解決方案.. 我寫了一個python腳本到流嘰嘰喳喳的鳴叫。 我的問題是我需要閱讀給定列表中每個單詞的5條推文。 下面是代碼: class TweetListener(StreamListener): def on_status(self,status): print "TWEET ARRIVED!!!" pr