├── .gitignore ├── .pypirc ├── README.md ├── electionsBR ├── __init__.py ├── api.py ├── backend │ ├── __init__.py │ └── client.py └── columns.py ├── examples.ipynb └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pypirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/.pypirc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/README.md -------------------------------------------------------------------------------- /electionsBR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/electionsBR/__init__.py -------------------------------------------------------------------------------- /electionsBR/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/electionsBR/api.py -------------------------------------------------------------------------------- /electionsBR/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /electionsBR/backend/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/electionsBR/backend/client.py -------------------------------------------------------------------------------- /electionsBR/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/electionsBR/columns.py -------------------------------------------------------------------------------- /examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/examples.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cepesp-Fgv/cepesp-python/HEAD/setup.py --------------------------------------------------------------------------------