VOOZH about

URL: https://www.geeksforgeeks.org/python/python-tweepy-getting-the-text-of-a-tweet/

โ‡ฑ Python Tweepy โ€“ Getting the text of a tweet - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python Tweepy โ€“ Getting the text of a tweet

Last Updated : 18 Jun, 2020
In this article we will see how we can get the text of a status/tweet. A tweet can only have a maximum of 280 characters. The text attribute of the Status object provides us with the text of the status. Identifying the text of the status in the GUI : ๐Ÿ‘ Image
In the above mentioned status, the text of the status is :
A programmerโ€™s takeaway from the pandemic: Local variables over Global variables.

 What do you think?
.
.
.
.
.
#programming #coding #programmingmemes #Covid_19 #codinglife #Python #javascript 
#pandemic #thursdayvibes
In order to get the text of the status, we have to do the following :
  1. Identify the status ID of the status from the GUI.
  2. Get the Status object of the status using the get_status() method with the status ID. If we want to get the complete text, pass another parameter tweet_mode = "extended".
  3. From this object, fetch the text attribute present in it. If we want to get the complete text, fetch the attribute full_text.
Example 1 : Consider the following status : ๐Ÿ‘ Image
We will use the status ID to fetch the status. The status ID of the above mentioned status is 1272771459249844224. Output :
The text of the status is : 

Which movie did you watch recently?

Reply us!
.
.
.
.
.
#tuesdaymood #TuesdayThoughts #Bollywood #Hollywood #genre 
#movies #movie #fun
Example 2 : Consider the following status : ๐Ÿ‘ Image
We will use the status ID to fetch the status. The status ID of the above mentioned status is 1272479136133627905. This time we will be fetching the complete text of the status. While using the get_status() method also pass tweet_mode = "extended" as a parameter. Then fetch the complete text using the full_text attribute.
Output :
The text of the status is : 

"I am thankful to programming for _______________."

Reply us most quirky/unexpected answers!
.
.
.
.
.
.
.
#coding #programming #codinglife #code #javascript #NodeJS #reactjs #100DaysOfCode #codingisfun
Comment
Article Tags:
Article Tags: