├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── exceptions.py ├── requirements.txt ├── test_data ├── geo │ ├── US_BY_STATE_1.json │ ├── US_BY_STATE_2.json │ ├── US_BY_STATE_3.json │ ├── gz_2010_us_040_00_20m.json │ ├── gz_2010_us_050_00_20m.json │ ├── process_geojson.py │ ├── us.json │ └── us_counties.csv ├── ips.json ├── place_names.json ├── screen_names.json ├── search.json ├── tweet_ids.json ├── tweets_id_range.json ├── user_ids.json ├── user_screen_names.json └── user_timelines.json ├── test_scripts ├── generate_search_json.py ├── search_configs │ ├── cancer_search.json │ ├── hpv_search.json │ ├── hpv_search_en_es_by_geocodes.json │ └── lynchsyndrome_search.json └── search_terms_configs │ ├── cancer_search_terms_config.json │ ├── hpv_search_en_es_by_geocodes_search_terms_config.json │ ├── hpv_search_terms_config.json │ └── lynchsyndrome_search_terms_config.json ├── twitter_crawler.py ├── twitter_streamer.py ├── twitter_tracker.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/config.json -------------------------------------------------------------------------------- /exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/exceptions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | twython>=3.6.0 2 | -------------------------------------------------------------------------------- /test_data/geo/US_BY_STATE_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/US_BY_STATE_1.json -------------------------------------------------------------------------------- /test_data/geo/US_BY_STATE_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/US_BY_STATE_2.json -------------------------------------------------------------------------------- /test_data/geo/US_BY_STATE_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/US_BY_STATE_3.json -------------------------------------------------------------------------------- /test_data/geo/gz_2010_us_040_00_20m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/gz_2010_us_040_00_20m.json -------------------------------------------------------------------------------- /test_data/geo/gz_2010_us_050_00_20m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/gz_2010_us_050_00_20m.json -------------------------------------------------------------------------------- /test_data/geo/process_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/process_geojson.py -------------------------------------------------------------------------------- /test_data/geo/us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/us.json -------------------------------------------------------------------------------- /test_data/geo/us_counties.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/geo/us_counties.csv -------------------------------------------------------------------------------- /test_data/ips.json: -------------------------------------------------------------------------------- 1 | {"current_ix": 0, "places": ["74.125.19.104"]} -------------------------------------------------------------------------------- /test_data/place_names.json: -------------------------------------------------------------------------------- 1 | {"current_ix": 1, "places": ["Gainesville"]} -------------------------------------------------------------------------------- /test_data/screen_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/screen_names.json -------------------------------------------------------------------------------- /test_data/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/search.json -------------------------------------------------------------------------------- /test_data/tweet_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/tweet_ids.json -------------------------------------------------------------------------------- /test_data/tweets_id_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/tweets_id_range.json -------------------------------------------------------------------------------- /test_data/user_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/user_ids.json -------------------------------------------------------------------------------- /test_data/user_screen_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/user_screen_names.json -------------------------------------------------------------------------------- /test_data/user_timelines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_data/user_timelines.json -------------------------------------------------------------------------------- /test_scripts/generate_search_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/generate_search_json.py -------------------------------------------------------------------------------- /test_scripts/search_configs/cancer_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_configs/cancer_search.json -------------------------------------------------------------------------------- /test_scripts/search_configs/hpv_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_configs/hpv_search.json -------------------------------------------------------------------------------- /test_scripts/search_configs/hpv_search_en_es_by_geocodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_configs/hpv_search_en_es_by_geocodes.json -------------------------------------------------------------------------------- /test_scripts/search_configs/lynchsyndrome_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_configs/lynchsyndrome_search.json -------------------------------------------------------------------------------- /test_scripts/search_terms_configs/cancer_search_terms_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_terms_configs/cancer_search_terms_config.json -------------------------------------------------------------------------------- /test_scripts/search_terms_configs/hpv_search_en_es_by_geocodes_search_terms_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_terms_configs/hpv_search_en_es_by_geocodes_search_terms_config.json -------------------------------------------------------------------------------- /test_scripts/search_terms_configs/hpv_search_terms_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_terms_configs/hpv_search_terms_config.json -------------------------------------------------------------------------------- /test_scripts/search_terms_configs/lynchsyndrome_search_terms_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/test_scripts/search_terms_configs/lynchsyndrome_search_terms_config.json -------------------------------------------------------------------------------- /twitter_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/twitter_crawler.py -------------------------------------------------------------------------------- /twitter_streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/twitter_streamer.py -------------------------------------------------------------------------------- /twitter_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/twitter_tracker.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bianjiang/tweetf0rm/HEAD/util.py --------------------------------------------------------------------------------