Joshua1808 commited on
Commit
0eaa842
·
1 Parent(s): ad444d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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
- tabla = []
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