Tweepy lookup of extended tweets for multiple tweets at a time? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!What is the difference between Python's list methods append and extend?How to get the current time in PythonHow can I make a time delay in Python?Catch multiple exceptions in one line (except block)Return all tweets of those who I am following with tweepyGetting full tweet text from “user_timeline” with tweepyTweepy Stream Listener for Extended TweetsTweepy StreamListener extended modetweepy Streaming API : full textTwitter returns truncated text
Why is one lightbulb in a string illuminated?
Why does BitLocker not use RSA?
Should man-made satellites feature an intelligent inverted "cow catcher"?
Weaponising the Grasp-at-a-Distance spell
Is it OK if I do not take the receipt in Germany?
Married in secret, can marital status in passport be changed at a later date?
Can this water damage be explained by lack of gutters and grading issues?
Is "ein Herz wie das meine" an antiquated or colloquial use of the possesive pronoun?
What's the connection between Mr. Nancy and fried chicken?
Help Recreating a Table
What is the ongoing value of the Kanban board to the developers as opposed to management
Trying to enter the Fox's den
How to create a command for the "strange m" symbol in latex?
Recursive calls to a function - why is the address of the parameter passed to it lowering with each call?
What helicopter has the most rotor blades?
Raising a bilingual kid. When should we introduce the majority language?
What is the difference between 准时 and 按时?
Suing a Police Officer Instead of the Police Department
What is the definining line between a helicopter and a drone a person can ride in?
2 sample t test for sample sizes - 30,000 and 150,000
Is there a verb for listening stealthily?
Who's this lady in the war room?
Is Bran literally the world's memory?
How to keep bees out of canned beverages?
Tweepy lookup of extended tweets for multiple tweets at a time?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!What is the difference between Python's list methods append and extend?How to get the current time in PythonHow can I make a time delay in Python?Catch multiple exceptions in one line (except block)Return all tweets of those who I am following with tweepyGetting full tweet text from “user_timeline” with tweepyTweepy Stream Listener for Extended TweetsTweepy StreamListener extended modetweepy Streaming API : full textTwitter returns truncated text
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm using tweepy to access a large number of tweets. Many tweets are truncated, so I want to get the full text of some tweets, which I have the id for.
My problem is: The tweepy api instance has one method of downloading multiple tweets at once (api.statuses_lookup), but this returns truncated tweets.
It also has a method that includes the full tweet text (api.get_status), but which afaik only takes one tweet at a time.
Is there way of getting the full text for multiple tweets at once?
import tweepy
consumer_key = "XXX"
secret = "XXX"
auth = tweepy.AppAuthHandler(consumer_key, secret)
auth.secure = True
api = tweepy.API(auth, wait_on_rate_limit=True, wait_on_rate_limit_notify=True)
ids = [1108360183586140161, 1108474125486641153]
# Finds tweets (up to 100 at a time), but doesn't contain extended text
foo = api.statuses_lookup(ids)
# Returns tweet, including extended text, but only for one at a time
bar = api.get_status(1108449077937635328, tweet_mode='extended')
python api twitter tweepy
add a comment |
I'm using tweepy to access a large number of tweets. Many tweets are truncated, so I want to get the full text of some tweets, which I have the id for.
My problem is: The tweepy api instance has one method of downloading multiple tweets at once (api.statuses_lookup), but this returns truncated tweets.
It also has a method that includes the full tweet text (api.get_status), but which afaik only takes one tweet at a time.
Is there way of getting the full text for multiple tweets at once?
import tweepy
consumer_key = "XXX"
secret = "XXX"
auth = tweepy.AppAuthHandler(consumer_key, secret)
auth.secure = True
api = tweepy.API(auth, wait_on_rate_limit=True, wait_on_rate_limit_notify=True)
ids = [1108360183586140161, 1108474125486641153]
# Finds tweets (up to 100 at a time), but doesn't contain extended text
foo = api.statuses_lookup(ids)
# Returns tweet, including extended text, but only for one at a time
bar = api.get_status(1108449077937635328, tweet_mode='extended')
python api twitter tweepy
are you saying that api.statuses_lookup does not also support the tweet_mode parameter?
– Andy Piper
Mar 22 at 16:07
Correct. Trying that gives: statuses_lookup() got an unexpected keyword argument 'tweet_mode'
– ahura
Mar 23 at 17:22
1
Looks like you need version 3.7.0 or better github.com/tweepy/tweepy/issues/840
– Andy Piper
Mar 23 at 17:26
Ah, thanks! I'll add an answer in case it's helpful to someone else.
– ahura
Mar 24 at 13:08
add a comment |
I'm using tweepy to access a large number of tweets. Many tweets are truncated, so I want to get the full text of some tweets, which I have the id for.
My problem is: The tweepy api instance has one method of downloading multiple tweets at once (api.statuses_lookup), but this returns truncated tweets.
It also has a method that includes the full tweet text (api.get_status), but which afaik only takes one tweet at a time.
Is there way of getting the full text for multiple tweets at once?
import tweepy
consumer_key = "XXX"
secret = "XXX"
auth = tweepy.AppAuthHandler(consumer_key, secret)
auth.secure = True
api = tweepy.API(auth, wait_on_rate_limit=True, wait_on_rate_limit_notify=True)
ids = [1108360183586140161, 1108474125486641153]
# Finds tweets (up to 100 at a time), but doesn't contain extended text
foo = api.statuses_lookup(ids)
# Returns tweet, including extended text, but only for one at a time
bar = api.get_status(1108449077937635328, tweet_mode='extended')
python api twitter tweepy
I'm using tweepy to access a large number of tweets. Many tweets are truncated, so I want to get the full text of some tweets, which I have the id for.
My problem is: The tweepy api instance has one method of downloading multiple tweets at once (api.statuses_lookup), but this returns truncated tweets.
It also has a method that includes the full tweet text (api.get_status), but which afaik only takes one tweet at a time.
Is there way of getting the full text for multiple tweets at once?
import tweepy
consumer_key = "XXX"
secret = "XXX"
auth = tweepy.AppAuthHandler(consumer_key, secret)
auth.secure = True
api = tweepy.API(auth, wait_on_rate_limit=True, wait_on_rate_limit_notify=True)
ids = [1108360183586140161, 1108474125486641153]
# Finds tweets (up to 100 at a time), but doesn't contain extended text
foo = api.statuses_lookup(ids)
# Returns tweet, including extended text, but only for one at a time
bar = api.get_status(1108449077937635328, tweet_mode='extended')
python api twitter tweepy
python api twitter tweepy
asked Mar 22 at 13:39
ahuraahura
5221614
5221614
are you saying that api.statuses_lookup does not also support the tweet_mode parameter?
– Andy Piper
Mar 22 at 16:07
Correct. Trying that gives: statuses_lookup() got an unexpected keyword argument 'tweet_mode'
– ahura
Mar 23 at 17:22
1
Looks like you need version 3.7.0 or better github.com/tweepy/tweepy/issues/840
– Andy Piper
Mar 23 at 17:26
Ah, thanks! I'll add an answer in case it's helpful to someone else.
– ahura
Mar 24 at 13:08
add a comment |
are you saying that api.statuses_lookup does not also support the tweet_mode parameter?
– Andy Piper
Mar 22 at 16:07
Correct. Trying that gives: statuses_lookup() got an unexpected keyword argument 'tweet_mode'
– ahura
Mar 23 at 17:22
1
Looks like you need version 3.7.0 or better github.com/tweepy/tweepy/issues/840
– Andy Piper
Mar 23 at 17:26
Ah, thanks! I'll add an answer in case it's helpful to someone else.
– ahura
Mar 24 at 13:08
are you saying that api.statuses_lookup does not also support the tweet_mode parameter?
– Andy Piper
Mar 22 at 16:07
are you saying that api.statuses_lookup does not also support the tweet_mode parameter?
– Andy Piper
Mar 22 at 16:07
Correct. Trying that gives: statuses_lookup() got an unexpected keyword argument 'tweet_mode'
– ahura
Mar 23 at 17:22
Correct. Trying that gives: statuses_lookup() got an unexpected keyword argument 'tweet_mode'
– ahura
Mar 23 at 17:22
1
1
Looks like you need version 3.7.0 or better github.com/tweepy/tweepy/issues/840
– Andy Piper
Mar 23 at 17:26
Looks like you need version 3.7.0 or better github.com/tweepy/tweepy/issues/840
– Andy Piper
Mar 23 at 17:26
Ah, thanks! I'll add an answer in case it's helpful to someone else.
– ahura
Mar 24 at 13:08
Ah, thanks! I'll add an answer in case it's helpful to someone else.
– ahura
Mar 24 at 13:08
add a comment |
1 Answer
1
active
oldest
votes
As pointed out by Andy Piper, the issue was fixed in a recent update of the Tweepy library, so running
pip install tweepy --upgrade
solves this.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55300882%2ftweepy-lookup-of-extended-tweets-for-multiple-tweets-at-a-time%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As pointed out by Andy Piper, the issue was fixed in a recent update of the Tweepy library, so running
pip install tweepy --upgrade
solves this.
add a comment |
As pointed out by Andy Piper, the issue was fixed in a recent update of the Tweepy library, so running
pip install tweepy --upgrade
solves this.
add a comment |
As pointed out by Andy Piper, the issue was fixed in a recent update of the Tweepy library, so running
pip install tweepy --upgrade
solves this.
As pointed out by Andy Piper, the issue was fixed in a recent update of the Tweepy library, so running
pip install tweepy --upgrade
solves this.
answered Mar 24 at 13:12
ahuraahura
5221614
5221614
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55300882%2ftweepy-lookup-of-extended-tweets-for-multiple-tweets-at-a-time%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
are you saying that api.statuses_lookup does not also support the tweet_mode parameter?
– Andy Piper
Mar 22 at 16:07
Correct. Trying that gives: statuses_lookup() got an unexpected keyword argument 'tweet_mode'
– ahura
Mar 23 at 17:22
1
Looks like you need version 3.7.0 or better github.com/tweepy/tweepy/issues/840
– Andy Piper
Mar 23 at 17:26
Ah, thanks! I'll add an answer in case it's helpful to someone else.
– ahura
Mar 24 at 13:08