Django App Get the latest tweets for any screen name using latest twitter REST APi
1.0
-
First you need to create twitter application https://apps.twitter.com/app/new
-
Then fill the following in settings.py file
TWITTER_CONSUMER_KEY = ""
TWITTER_CONSUMER_SECRET = ""
TWITTER_OAUTH_TOKEN = ""
TWITTER_OAUTH_TOKEN_SECRET = ""
-
After download files
-
Enter this Directory
$ cd src/
db.sqlite3 manage.py requirments.txt static_in_pro templates tweetsapp tweety
- install requirments.txt
$ pip install -r requirments.txt
- migrate data base
$ python manage.py migrate
- Now you are ready to run this application
$ python manage.py runserver
System check identified no issues (0 silenced).
February 10, 2016 - 14:38:56
Django version 1.11.4, using settings 'tweety.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.