├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── TODO.txt ├── pysocialwatcher ├── __init__.py ├── constants.py ├── facebook_credentials_example.csv ├── input_examples │ ├── India_test_small_not_scholarities.json │ ├── West_US_query.json │ ├── doha_subregions.json │ ├── newyork_expats.json │ ├── ny_subregions_zipcodes.json │ ├── proof_of_concept.json │ ├── quick_example.json │ ├── recollection_health_awareness_all.json │ ├── recollection_health_awareness_main_countries.json │ ├── recollection_health_awareness_main_countries_null.json │ ├── test_example.json │ └── test_household_composition.json ├── json_builder.py ├── main.py ├── output_examples │ ├── quick_example_dataframe_collected.csv │ ├── quick_example_dataframe_postprocessed.csv │ ├── quick_example_dataframe_skeleton.csv │ ├── soccer_gcc_collected.csv │ ├── soccer_gcc_skeleton.csv │ ├── test_example_dataframe_complete.csv │ └── test_example_dataframe_skeleton.csv ├── post_process.py ├── test_windows.py └── utils.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── resources ├── quick_example_dataframe_collected.csv ├── small_peace_vs_war_fail_field.json ├── small_peace_vs_war_fail_name.json ├── test_example_dataframe_complete.csv └── test_example_dataframe_skeleton.csv ├── tests.py └── testutils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/TODO.txt -------------------------------------------------------------------------------- /pysocialwatcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/__init__.py -------------------------------------------------------------------------------- /pysocialwatcher/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/constants.py -------------------------------------------------------------------------------- /pysocialwatcher/facebook_credentials_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/facebook_credentials_example.csv -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/India_test_small_not_scholarities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/India_test_small_not_scholarities.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/West_US_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/West_US_query.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/doha_subregions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/doha_subregions.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/newyork_expats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/newyork_expats.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/ny_subregions_zipcodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/ny_subregions_zipcodes.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/proof_of_concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/proof_of_concept.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/quick_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/quick_example.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/recollection_health_awareness_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/recollection_health_awareness_all.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/recollection_health_awareness_main_countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/recollection_health_awareness_main_countries.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/recollection_health_awareness_main_countries_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/recollection_health_awareness_main_countries_null.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/test_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/test_example.json -------------------------------------------------------------------------------- /pysocialwatcher/input_examples/test_household_composition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/input_examples/test_household_composition.json -------------------------------------------------------------------------------- /pysocialwatcher/json_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/json_builder.py -------------------------------------------------------------------------------- /pysocialwatcher/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/main.py -------------------------------------------------------------------------------- /pysocialwatcher/output_examples/quick_example_dataframe_collected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/output_examples/quick_example_dataframe_collected.csv -------------------------------------------------------------------------------- /pysocialwatcher/output_examples/quick_example_dataframe_postprocessed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/output_examples/quick_example_dataframe_postprocessed.csv -------------------------------------------------------------------------------- /pysocialwatcher/output_examples/quick_example_dataframe_skeleton.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/output_examples/quick_example_dataframe_skeleton.csv -------------------------------------------------------------------------------- /pysocialwatcher/output_examples/soccer_gcc_collected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/output_examples/soccer_gcc_collected.csv -------------------------------------------------------------------------------- /pysocialwatcher/output_examples/soccer_gcc_skeleton.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/output_examples/soccer_gcc_skeleton.csv -------------------------------------------------------------------------------- /pysocialwatcher/output_examples/test_example_dataframe_complete.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/output_examples/test_example_dataframe_complete.csv -------------------------------------------------------------------------------- /pysocialwatcher/output_examples/test_example_dataframe_skeleton.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/output_examples/test_example_dataframe_skeleton.csv -------------------------------------------------------------------------------- /pysocialwatcher/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/post_process.py -------------------------------------------------------------------------------- /pysocialwatcher/test_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/test_windows.py -------------------------------------------------------------------------------- /pysocialwatcher/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/pysocialwatcher/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- -------------------------------------------------------------------------------- /tests/resources/quick_example_dataframe_collected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/tests/resources/quick_example_dataframe_collected.csv -------------------------------------------------------------------------------- /tests/resources/small_peace_vs_war_fail_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/tests/resources/small_peace_vs_war_fail_field.json -------------------------------------------------------------------------------- /tests/resources/small_peace_vs_war_fail_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/tests/resources/small_peace_vs_war_fail_name.json -------------------------------------------------------------------------------- /tests/resources/test_example_dataframe_complete.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/tests/resources/test_example_dataframe_complete.csv -------------------------------------------------------------------------------- /tests/resources/test_example_dataframe_skeleton.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/tests/resources/test_example_dataframe_skeleton.csv -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tests/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopalotti/pySocialWatcher/HEAD/tests/testutils.py --------------------------------------------------------------------------------