twython Questions
2
Solved
Twitter allows up to 100 user ids at a time to query for user profile information. But if there is an invalid ID among those, it returns:
404 (Not Found), No user matches for specified terms
wit...
Rath asked 27/8, 2015 at 21:52
0
I am trying to use Twitter API with the Python wrapper Twython and I want to retrieve all replies (the comments below a tweet) to a certain tweet find using some patterns.
At the moment to achiev...
5
Solved
I'm trying to make python send a tweet for me using Twython but for some reason everything I'm trying isn't working.
I've followed the Twython README but still unable to acheive what I want.
Belo...
Rosemonde asked 30/9, 2013 at 13:16
0
I have been looking for an explanation on how to do this using this particular set of libraries and couldn't really find anything simple and straightforward enough. Since I have figured out a worki...
Perished asked 24/8, 2017 at 20:54
1
Solved
I am trying to scrape latitude and longitude of user from Twitter with respect to user names. The user name list is a csv file with more than 50 names in one input file. The below are two trials th...
Faery asked 26/6, 2016 at 15:5
1
I'm trying to exclude retweets and replies in my Twython search.
Here is my code:
from twython import Twython, TwythonError
app_key = "xxxx"
app_secret = "xxxx"
oauth_token = "xxxx"
oauth_token_...
4
I am using the following code to collect Tweets pertaining to a certain topic but in all the tweets that I have extracted the 'places' attribute is None. Am I doing something wrong? Also, the code ...
2
Solved
I had this small script working perfectly for the last month
from twython import Twython
import glob
import random
app_key = "XXX"
app_secret = "XXX"
oauth_token = "XXX"
oauth_token_secret = "XXX...
3
Solved
I want to get a list of twitter followers/following of a particular user, when their screenname or user.id is specified. Can anyone please give the code snippet for it? Thanks.
Trouvaille asked 11/5, 2011 at 11:53
1
Solved
I am using the twython library, to do handshakes with twitter python library.
And I am testing things on my local server, 127.0.0.1:8000
This is my first django view, that generates the twitter to...
Exceptive asked 25/6, 2013 at 20:40
1
Solved
Twitter just recently made the following mandatory:
1) You must pass an oauth_callback value to oauth/request_token. It's not optional. Even if you have one already set on dev.twitter.com. If you'...
Nataline asked 5/4, 2013 at 18:37
1
Solved
How do we find or fetch tweets on the basis of hash tag. i.e. I want to find tweets regarding on a certain subject? Is it possible in Python using Twython?
Thanks
1
© 2022 - 2024 — McMap. All rights reserved.