Skip to content

Commit

Permalink
requirementes
Browse files Browse the repository at this point in the history
  • Loading branch information
gustuxd committed Oct 18, 2020
1 parent f16f6c3 commit e96dce4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ unidecode
regex
sklearn
Pillow
gunicorn
gunicorn
mysql-connector-python
2 changes: 1 addition & 1 deletion ttweets.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_tweets(query):

body = response.json()
if not body['statuses']:
raise Exception("We don't have tweets to show");
raise Exception("We don't have tweets to show")
else:
for tweet in body['statuses']:
text = tweet['full_text']
Expand Down

0 comments on commit e96dce4

Please sign in to comment.