├── .readthedocs.yaml ├── .vscode └── settings.json ├── AdDownloader.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── requires.txt └── top_level.txt ├── AdDownloader ├── __init__.py ├── __main__.py ├── adlib_api.py ├── analysis.py ├── app.py ├── cli.py ├── helpers.py ├── media_download.py └── start_app.py ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── data ├── McD_be.xlsx └── us_parties.xlsx ├── dist ├── AdDownloader-0.1.0.tar.gz ├── AdDownloader-0.2.0-py3-none-any.whl ├── AdDownloader-0.2.0.tar.gz ├── AdDownloader-0.2.1-py3-none-any.whl ├── AdDownloader-0.2.1.tar.gz ├── AdDownloader-0.2.10-py3-none-any.whl ├── AdDownloader-0.2.11-py3-none-any.whl ├── AdDownloader-0.2.2-py3-none-any.whl ├── AdDownloader-0.2.2.tar.gz ├── AdDownloader-0.2.3-py3-none-any.whl ├── AdDownloader-0.2.3.tar.gz ├── AdDownloader-0.2.4.1-py3-none-any.whl ├── AdDownloader-0.2.4.1.tar.gz ├── AdDownloader-0.2.5-py3-none-any.whl ├── AdDownloader-0.2.6-py3-none-any.whl ├── AdDownloader-0.2.7-py3-none-any.whl ├── AdDownloader-0.2.8-py3-none-any.whl ├── AdDownloader-0.2.9-py3-none-any.whl ├── addownloader-0.2.10.tar.gz ├── addownloader-0.2.11.tar.gz ├── addownloader-0.2.5.tar.gz ├── addownloader-0.2.6.tar.gz ├── addownloader-0.2.7.tar.gz ├── addownloader-0.2.8.tar.gz └── addownloader-0.2.9.tar.gz ├── docs ├── Makefile ├── doctrees │ ├── adlib_api.doctree │ ├── cli.doctree │ ├── environment.pickle │ ├── helpers.doctree │ ├── homepage.doctree │ ├── index.doctree │ └── media_download.doctree ├── html │ ├── .buildinfo │ ├── _modules │ │ ├── AdDownloader │ │ │ ├── adlib_api.html │ │ │ ├── cli.html │ │ │ ├── helpers.html │ │ │ └── media_download.html │ │ └── index.html │ ├── _sources │ │ ├── adlib_api.rst.txt │ │ ├── cli.rst.txt │ │ ├── helpers.rst.txt │ │ ├── homepage.rst.txt │ │ └── media_download.rst.txt │ ├── _static │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ └── sphinx_highlight.js │ ├── adlib_api.html │ ├── cli.html │ ├── genindex.html │ ├── helpers.html │ ├── homepage.html │ ├── media_download.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── make.bat ├── requirements.txt └── source │ ├── adlib_api.rst │ ├── analysis.rst │ ├── cli.rst │ ├── conf.py │ ├── helpers.rst │ ├── index.rst │ └── media_download.rst ├── example.py ├── output └── uselections │ └── us-elections-final.xlsx ├── pyproject.toml └── tests ├── __pycache__ └── test_AdDownloader.cpython-311-pytest-6.2.4.pyc ├── regression_estimates.r ├── test_AdDownloader.py └── us_elections_analysis.py /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AdDownloader.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader.egg-info/PKG-INFO -------------------------------------------------------------------------------- /AdDownloader.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /AdDownloader.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AdDownloader.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader.egg-info/entry_points.txt -------------------------------------------------------------------------------- /AdDownloader.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader.egg-info/requires.txt -------------------------------------------------------------------------------- /AdDownloader.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | AdDownloader 2 | -------------------------------------------------------------------------------- /AdDownloader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/__init__.py -------------------------------------------------------------------------------- /AdDownloader/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/__main__.py -------------------------------------------------------------------------------- /AdDownloader/adlib_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/adlib_api.py -------------------------------------------------------------------------------- /AdDownloader/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/analysis.py -------------------------------------------------------------------------------- /AdDownloader/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/app.py -------------------------------------------------------------------------------- /AdDownloader/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/cli.py -------------------------------------------------------------------------------- /AdDownloader/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/helpers.py -------------------------------------------------------------------------------- /AdDownloader/media_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/media_download.py -------------------------------------------------------------------------------- /AdDownloader/start_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/AdDownloader/start_app.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/README.md -------------------------------------------------------------------------------- /data/McD_be.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/data/McD_be.xlsx -------------------------------------------------------------------------------- /data/us_parties.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/data/us_parties.xlsx -------------------------------------------------------------------------------- /dist/AdDownloader-0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.1.0.tar.gz -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.0.tar.gz -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.1.tar.gz -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.10-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.10-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.11-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.11-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.2-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.2.tar.gz -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.3-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.3-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.3.tar.gz -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.4.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.4.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.4.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.4.1.tar.gz -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.5-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.5-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.6-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.6-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.7-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.7-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.8-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.8-py3-none-any.whl -------------------------------------------------------------------------------- /dist/AdDownloader-0.2.9-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/AdDownloader-0.2.9-py3-none-any.whl -------------------------------------------------------------------------------- /dist/addownloader-0.2.10.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/addownloader-0.2.10.tar.gz -------------------------------------------------------------------------------- /dist/addownloader-0.2.11.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/addownloader-0.2.11.tar.gz -------------------------------------------------------------------------------- /dist/addownloader-0.2.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/addownloader-0.2.5.tar.gz -------------------------------------------------------------------------------- /dist/addownloader-0.2.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/addownloader-0.2.6.tar.gz -------------------------------------------------------------------------------- /dist/addownloader-0.2.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/addownloader-0.2.7.tar.gz -------------------------------------------------------------------------------- /dist/addownloader-0.2.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/addownloader-0.2.8.tar.gz -------------------------------------------------------------------------------- /dist/addownloader-0.2.9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/dist/addownloader-0.2.9.tar.gz -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/doctrees/adlib_api.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/doctrees/adlib_api.doctree -------------------------------------------------------------------------------- /docs/doctrees/cli.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/doctrees/cli.doctree -------------------------------------------------------------------------------- /docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/doctrees/helpers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/doctrees/helpers.doctree -------------------------------------------------------------------------------- /docs/doctrees/homepage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/doctrees/homepage.doctree -------------------------------------------------------------------------------- /docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/doctrees/media_download.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/doctrees/media_download.doctree -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/_modules/AdDownloader/adlib_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_modules/AdDownloader/adlib_api.html -------------------------------------------------------------------------------- /docs/html/_modules/AdDownloader/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_modules/AdDownloader/cli.html -------------------------------------------------------------------------------- /docs/html/_modules/AdDownloader/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_modules/AdDownloader/helpers.html -------------------------------------------------------------------------------- /docs/html/_modules/AdDownloader/media_download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_modules/AdDownloader/media_download.html -------------------------------------------------------------------------------- /docs/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_modules/index.html -------------------------------------------------------------------------------- /docs/html/_sources/adlib_api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_sources/adlib_api.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/cli.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_sources/cli.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/helpers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_sources/helpers.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/homepage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_sources/homepage.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/media_download.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_sources/media_download.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/_sphinx_javascript_frameworks_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/_sphinx_javascript_frameworks_compat.js -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/html/adlib_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/adlib_api.html -------------------------------------------------------------------------------- /docs/html/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/cli.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/helpers.html -------------------------------------------------------------------------------- /docs/html/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/homepage.html -------------------------------------------------------------------------------- /docs/html/media_download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/media_download.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/adlib_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/source/adlib_api.rst -------------------------------------------------------------------------------- /docs/source/analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/source/analysis.rst -------------------------------------------------------------------------------- /docs/source/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/source/cli.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/source/helpers.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/media_download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/docs/source/media_download.rst -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/example.py -------------------------------------------------------------------------------- /output/uselections/us-elections-final.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/output/uselections/us-elections-final.xlsx -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__pycache__/test_AdDownloader.cpython-311-pytest-6.2.4.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/tests/__pycache__/test_AdDownloader.cpython-311-pytest-6.2.4.pyc -------------------------------------------------------------------------------- /tests/regression_estimates.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/tests/regression_estimates.r -------------------------------------------------------------------------------- /tests/test_AdDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/tests/test_AdDownloader.py -------------------------------------------------------------------------------- /tests/us_elections_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paularossi/AdDownloader/HEAD/tests/us_elections_analysis.py --------------------------------------------------------------------------------