├── LICENSE ├── README.md ├── config.py ├── config.yaml ├── docs ├── Makefile ├── build │ ├── .buildinfo │ ├── .doctrees │ │ ├── cookbook │ │ │ ├── index.doctree │ │ │ ├── queries.doctree │ │ │ └── twitter │ │ │ │ ├── auxiliary_searches.doctree │ │ │ │ ├── data.doctree │ │ │ │ ├── index.doctree │ │ │ │ ├── organization.doctree │ │ │ │ ├── search.doctree │ │ │ │ ├── stream.doctree │ │ │ │ └── updates_and_backfills.doctree │ │ ├── environment.pickle │ │ ├── index.doctree │ │ ├── installation.doctree │ │ └── note.doctree │ ├── _sources │ │ ├── cookbook │ │ │ ├── index.rst.txt │ │ │ ├── queries.rst.txt │ │ │ └── twitter │ │ │ │ ├── auxiliary_searches.rst.txt │ │ │ │ ├── data.rst.txt │ │ │ │ ├── index.rst.txt │ │ │ │ ├── organization.rst.txt │ │ │ │ ├── search.rst.txt │ │ │ │ ├── stream.rst.txt │ │ │ │ └── updates_and_backfills.rst.txt │ │ ├── index.rst.txt │ │ ├── installation.rst.txt │ │ └── note.rst.txt │ ├── _static │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.13.1.js │ │ └── underscore.js │ ├── cookbook │ │ ├── index.html │ │ ├── queries.html │ │ └── twitter │ │ │ ├── auxiliary_searches.html │ │ │ ├── data.html │ │ │ ├── index.html │ │ │ ├── organization.html │ │ │ ├── search.html │ │ │ ├── stream.html │ │ │ └── updates_and_backfills.html │ ├── genindex.html │ ├── index.html │ ├── installation.html │ ├── note.html │ ├── objects.inv │ ├── search.html │ └── searchindex.js ├── make.bat └── source │ ├── .DS_Store │ ├── conf.py │ ├── cookbook │ ├── index.rst │ ├── queries.rst │ └── twitter │ │ ├── auxiliary_searches.rst │ │ ├── data.rst │ │ ├── index.rst │ │ ├── organization.rst │ │ ├── search.rst │ │ ├── stream.rst │ │ └── updates_and_backfills.rst │ ├── index.rst │ └── installation.rst ├── input └── twitter │ ├── search │ └── facebook_oversight.yaml │ └── stream │ └── facebook_oversight.yaml ├── requirements.txt └── twitter ├── README.md ├── helper.py ├── listener.py ├── search.py └── stream.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/config.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/config.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.buildinfo -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/index.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/queries.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/queries.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/twitter/auxiliary_searches.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/twitter/auxiliary_searches.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/twitter/data.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/twitter/data.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/twitter/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/twitter/index.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/twitter/organization.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/twitter/organization.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/twitter/search.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/twitter/search.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/twitter/stream.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/twitter/stream.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/cookbook/twitter/updates_and_backfills.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/cookbook/twitter/updates_and_backfills.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/build/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/installation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/installation.doctree -------------------------------------------------------------------------------- /docs/build/.doctrees/note.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/.doctrees/note.doctree -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/index.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/queries.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/queries.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/twitter/auxiliary_searches.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/twitter/auxiliary_searches.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/twitter/data.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/twitter/data.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/twitter/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/twitter/index.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/twitter/organization.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/twitter/organization.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/twitter/search.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/twitter/search.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/twitter/stream.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/twitter/stream.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/cookbook/twitter/updates_and_backfills.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/cookbook/twitter/updates_and_backfills.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/installation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/installation.rst.txt -------------------------------------------------------------------------------- /docs/build/_sources/note.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_sources/note.rst.txt -------------------------------------------------------------------------------- /docs/build/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/alabaster.css -------------------------------------------------------------------------------- /docs/build/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/basic.css -------------------------------------------------------------------------------- /docs/build/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/build/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/doctools.js -------------------------------------------------------------------------------- /docs/build/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/build/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/file.png -------------------------------------------------------------------------------- /docs/build/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/build/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/jquery.js -------------------------------------------------------------------------------- /docs/build/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/language_data.js -------------------------------------------------------------------------------- /docs/build/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/minus.png -------------------------------------------------------------------------------- /docs/build/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/plus.png -------------------------------------------------------------------------------- /docs/build/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/pygments.css -------------------------------------------------------------------------------- /docs/build/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/searchtools.js -------------------------------------------------------------------------------- /docs/build/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/build/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/_static/underscore.js -------------------------------------------------------------------------------- /docs/build/cookbook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/index.html -------------------------------------------------------------------------------- /docs/build/cookbook/queries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/queries.html -------------------------------------------------------------------------------- /docs/build/cookbook/twitter/auxiliary_searches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/twitter/auxiliary_searches.html -------------------------------------------------------------------------------- /docs/build/cookbook/twitter/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/twitter/data.html -------------------------------------------------------------------------------- /docs/build/cookbook/twitter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/twitter/index.html -------------------------------------------------------------------------------- /docs/build/cookbook/twitter/organization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/twitter/organization.html -------------------------------------------------------------------------------- /docs/build/cookbook/twitter/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/twitter/search.html -------------------------------------------------------------------------------- /docs/build/cookbook/twitter/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/twitter/stream.html -------------------------------------------------------------------------------- /docs/build/cookbook/twitter/updates_and_backfills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/cookbook/twitter/updates_and_backfills.html -------------------------------------------------------------------------------- /docs/build/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/genindex.html -------------------------------------------------------------------------------- /docs/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/index.html -------------------------------------------------------------------------------- /docs/build/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/installation.html -------------------------------------------------------------------------------- /docs/build/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/note.html -------------------------------------------------------------------------------- /docs/build/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/objects.inv -------------------------------------------------------------------------------- /docs/build/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/search.html -------------------------------------------------------------------------------- /docs/build/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/build/searchindex.js -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/.DS_Store -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/cookbook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/index.rst -------------------------------------------------------------------------------- /docs/source/cookbook/queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/queries.rst -------------------------------------------------------------------------------- /docs/source/cookbook/twitter/auxiliary_searches.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/twitter/auxiliary_searches.rst -------------------------------------------------------------------------------- /docs/source/cookbook/twitter/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/twitter/data.rst -------------------------------------------------------------------------------- /docs/source/cookbook/twitter/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/twitter/index.rst -------------------------------------------------------------------------------- /docs/source/cookbook/twitter/organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/twitter/organization.rst -------------------------------------------------------------------------------- /docs/source/cookbook/twitter/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/twitter/search.rst -------------------------------------------------------------------------------- /docs/source/cookbook/twitter/stream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/twitter/stream.rst -------------------------------------------------------------------------------- /docs/source/cookbook/twitter/updates_and_backfills.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/cookbook/twitter/updates_and_backfills.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /input/twitter/search/facebook_oversight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/input/twitter/search/facebook_oversight.yaml -------------------------------------------------------------------------------- /input/twitter/stream/facebook_oversight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/input/twitter/stream/facebook_oversight.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/requirements.txt -------------------------------------------------------------------------------- /twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/twitter/README.md -------------------------------------------------------------------------------- /twitter/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/twitter/helper.py -------------------------------------------------------------------------------- /twitter/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/twitter/listener.py -------------------------------------------------------------------------------- /twitter/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/twitter/search.py -------------------------------------------------------------------------------- /twitter/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjgallagher/focalevents/HEAD/twitter/stream.py --------------------------------------------------------------------------------