├── .coveragerc ├── .flake8 ├── .gitignore ├── .hound.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── Procfile ├── README.md ├── analyser.py ├── archive-analyser.ipynb ├── dev-requirements.txt ├── docs ├── gender_reply.png └── tweet_class.png ├── manage.py ├── new_tweet_subset.js ├── static └── foo ├── tasks.py ├── test_archive_2016_2017_2_months.zip ├── tweet_display ├── __init__.py ├── admin.py ├── analyse_data.py ├── apps.py ├── helper.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_graph_open_humans_member.py │ └── __init__.py ├── models.py ├── read_data.py ├── static │ ├── css │ │ ├── logo.svg │ │ └── metricsgraphics.css │ ├── favicon.ico │ ├── javascripts │ │ └── leaflet.timeline.js │ └── profile.jpg ├── tasks.py ├── templates │ └── tweet_display │ │ ├── application.html │ │ ├── index.html │ │ ├── interactions.html │ │ ├── location.html │ │ └── partials │ │ ├── graph_buttons.html │ │ ├── graph_in_making.html │ │ └── graph_status.html ├── tests │ ├── __init__.py │ └── tests_data.py ├── urls.py └── views.py ├── twitteranalyser ├── __init__.py ├── apps.py ├── celery.py ├── settings.py ├── templates │ └── twitteranalyser │ │ └── about.html ├── tests │ ├── __init__.py │ └── tests_views.py ├── urls.py ├── views.py └── wsgi.py └── users ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_openhumansmember_public.py └── __init__.py ├── models.py ├── templates └── users │ ├── complete.html │ ├── dashboard.html │ ├── index.html │ ├── partials │ └── upload_form.html │ ├── public_data.html │ └── upload_old.html ├── tests ├── __init__.py └── tests_views.py ├── urls.py └── views.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- 1 | python: 2 | enabled: true 3 | config_file: .flake8 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/README.md -------------------------------------------------------------------------------- /analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/analyser.py -------------------------------------------------------------------------------- /archive-analyser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/archive-analyser.ipynb -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/gender_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/docs/gender_reply.png -------------------------------------------------------------------------------- /docs/tweet_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/docs/tweet_class.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/manage.py -------------------------------------------------------------------------------- /new_tweet_subset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/new_tweet_subset.js -------------------------------------------------------------------------------- /static/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tasks.py -------------------------------------------------------------------------------- /test_archive_2016_2017_2_months.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/test_archive_2016_2017_2_months.zip -------------------------------------------------------------------------------- /tweet_display/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweet_display/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /tweet_display/analyse_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/analyse_data.py -------------------------------------------------------------------------------- /tweet_display/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/apps.py -------------------------------------------------------------------------------- /tweet_display/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/helper.py -------------------------------------------------------------------------------- /tweet_display/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/migrations/0001_initial.py -------------------------------------------------------------------------------- /tweet_display/migrations/0002_graph_open_humans_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/migrations/0002_graph_open_humans_member.py -------------------------------------------------------------------------------- /tweet_display/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweet_display/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/models.py -------------------------------------------------------------------------------- /tweet_display/read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/read_data.py -------------------------------------------------------------------------------- /tweet_display/static/css/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/static/css/logo.svg -------------------------------------------------------------------------------- /tweet_display/static/css/metricsgraphics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/static/css/metricsgraphics.css -------------------------------------------------------------------------------- /tweet_display/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/static/favicon.ico -------------------------------------------------------------------------------- /tweet_display/static/javascripts/leaflet.timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/static/javascripts/leaflet.timeline.js -------------------------------------------------------------------------------- /tweet_display/static/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/static/profile.jpg -------------------------------------------------------------------------------- /tweet_display/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/tasks.py -------------------------------------------------------------------------------- /tweet_display/templates/tweet_display/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/templates/tweet_display/application.html -------------------------------------------------------------------------------- /tweet_display/templates/tweet_display/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/templates/tweet_display/index.html -------------------------------------------------------------------------------- /tweet_display/templates/tweet_display/interactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/templates/tweet_display/interactions.html -------------------------------------------------------------------------------- /tweet_display/templates/tweet_display/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/templates/tweet_display/location.html -------------------------------------------------------------------------------- /tweet_display/templates/tweet_display/partials/graph_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/templates/tweet_display/partials/graph_buttons.html -------------------------------------------------------------------------------- /tweet_display/templates/tweet_display/partials/graph_in_making.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/templates/tweet_display/partials/graph_in_making.html -------------------------------------------------------------------------------- /tweet_display/templates/tweet_display/partials/graph_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/templates/tweet_display/partials/graph_status.html -------------------------------------------------------------------------------- /tweet_display/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tweet_display/tests/tests_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/tests/tests_data.py -------------------------------------------------------------------------------- /tweet_display/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/urls.py -------------------------------------------------------------------------------- /tweet_display/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/tweet_display/views.py -------------------------------------------------------------------------------- /twitteranalyser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/__init__.py -------------------------------------------------------------------------------- /twitteranalyser/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/apps.py -------------------------------------------------------------------------------- /twitteranalyser/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/celery.py -------------------------------------------------------------------------------- /twitteranalyser/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/settings.py -------------------------------------------------------------------------------- /twitteranalyser/templates/twitteranalyser/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/templates/twitteranalyser/about.html -------------------------------------------------------------------------------- /twitteranalyser/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitteranalyser/tests/tests_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/tests/tests_views.py -------------------------------------------------------------------------------- /twitteranalyser/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/urls.py -------------------------------------------------------------------------------- /twitteranalyser/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/views.py -------------------------------------------------------------------------------- /twitteranalyser/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/twitteranalyser/wsgi.py -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/forms.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/0002_openhumansmember_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/migrations/0002_openhumansmember_public.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/models.py -------------------------------------------------------------------------------- /users/templates/users/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/templates/users/complete.html -------------------------------------------------------------------------------- /users/templates/users/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/templates/users/dashboard.html -------------------------------------------------------------------------------- /users/templates/users/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/templates/users/index.html -------------------------------------------------------------------------------- /users/templates/users/partials/upload_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/templates/users/partials/upload_form.html -------------------------------------------------------------------------------- /users/templates/users/public_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/templates/users/public_data.html -------------------------------------------------------------------------------- /users/templates/users/upload_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/templates/users/upload_old.html -------------------------------------------------------------------------------- /users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/tests/tests_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/tests/tests_views.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gedankenstuecke/twitter-analyser/HEAD/users/views.py --------------------------------------------------------------------------------