django-twitter-stream
django-twitter-stream copied to clipboard
Django app for streaming tweets from the Twitter API into a database.
Hi Michael, Thank you for handy app. I managed to make it work for Django 2.1 Here is my suggested edits as a pull request.
i use django 2.2 i've followed through the instructions while making some changes to adjust the newest version. the admin page works. however when i run `python manage.py stream` i...
I'm in Django 2.0.1. After removing migrations and making new migration everything is ok and the admin page work. When running python manage.py stream I get the error File "/mysite/twitter_stream/management/commands/stream.py",...
Genarated URLS.py # urls for Map # url(r'^Home/map/$', views.MapListView.as_view(), name='Home_map_list'), # url(r'^Home/map/create/$', views.MapCreateView.as_view(), name='Home_map_create'), # url(r'^Home/map/detail/(?P\S+)/$', views.MapDetailView.as_view(), name='Home_map_detail'), # url(r'^Home/map/update/(?P\S+)/$', views.MapUpdateView.as_view(), name='Home_map_update'), Correct URL pattern url(r'^$', views.MapListView.as_view(), name='Home_map_list'), url(r'^create/$', views.MapCreateView.as_view(),...
Hello, I am new to python, django and tweepy. How do you get to Django admin page as specified here: ### Provide Twitter API Keys Once you have added `twitter_stream`...
I checked it only works with MySql and not sqlite or postgresql. Is there any reason for this at implementation level? Thanks
``` $ python manage.py stream MyAPIKeys --poll-interval 30 ``` ``` # The name of the default keys to use for streaming. If not set, we'll just grab one. 'DEFAULT_KEYS_NAME': None,...
Hi, I run : python manage.py stream but nothing is stored in my database. The terminal hangs for a while then finally shows this stacktrace Exception in thread Thread-50: Traceback...
with python manage.py stream keys = ApiKey.objects.first() AttributeError: 'Manager' object has no attribute 'first' Keys added in database.
No module name "twitter-monitor" What is twitter-monitor in your app? Thanks in advance