├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── access_control_decorator.py ├── app.py ├── cache_handler.py ├── config.py ├── data ├── Makefile ├── campaigns.yaml ├── districts.csv └── legislators.csv ├── fftf_leaderboard.py ├── models.py ├── newrelic.ini ├── old └── test_server.py ├── political_data.py ├── requirements.txt ├── runtime.txt ├── static ├── css │ └── styles.css ├── demo-roll-call.min.json └── js │ ├── jquery.min.js │ ├── lodash.min.js │ └── main.js ├── templates └── demo.html ├── tests.py └── uwsgi.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/README.md -------------------------------------------------------------------------------- /access_control_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/access_control_decorator.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/app.py -------------------------------------------------------------------------------- /cache_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/cache_handler.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/config.py -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/data/Makefile -------------------------------------------------------------------------------- /data/campaigns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/data/campaigns.yaml -------------------------------------------------------------------------------- /data/districts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/data/districts.csv -------------------------------------------------------------------------------- /data/legislators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/data/legislators.csv -------------------------------------------------------------------------------- /fftf_leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/fftf_leaderboard.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/models.py -------------------------------------------------------------------------------- /newrelic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/newrelic.ini -------------------------------------------------------------------------------- /old/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/old/test_server.py -------------------------------------------------------------------------------- /political_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/political_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.6 2 | -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/demo-roll-call.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/static/demo-roll-call.min.json -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/static/js/lodash.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/templates/demo.html -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/tests.py -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfrce/call-congress/HEAD/uwsgi.ini --------------------------------------------------------------------------------