Spaces:
Runtime error
Runtime error
Commit
·
0eaa842
1
Parent(s):
ad444d0
Update app.py
Browse files
app.py
CHANGED
@@ -81,10 +81,11 @@ with colT2:
|
|
81 |
</style> """, unsafe_allow_html=True)
|
82 |
|
83 |
def analizar_tweets(search_words, number_of_tweets):
|
|
|
84 |
if(number_of_tweets > 0):
|
85 |
tweets = api.user_timeline(screen_name = search_words,tweet_mode="extended", count= number_of_tweets)
|
86 |
result = []
|
87 |
-
|
88 |
for tweet in tweets:
|
89 |
if (tweet.full_text.startswith('RT')):
|
90 |
continue
|
|
|
81 |
</style> """, unsafe_allow_html=True)
|
82 |
|
83 |
def analizar_tweets(search_words, number_of_tweets):
|
84 |
+
tabla = []
|
85 |
if(number_of_tweets > 0):
|
86 |
tweets = api.user_timeline(screen_name = search_words,tweet_mode="extended", count= number_of_tweets)
|
87 |
result = []
|
88 |
+
|
89 |
for tweet in tweets:
|
90 |
if (tweet.full_text.startswith('RT')):
|
91 |
continue
|