├── .codeclimate.yml ├── .coveragerc ├── .env.sample ├── .gitignore ├── .pyup.yml ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── codecov.yml ├── docker-compose.prod.yml ├── docker-compose.staging.yml ├── docker-compose.yml ├── jupyter ├── 01-clean_brasil_io_election_dataset.ipynb ├── 02-Deputy-Biography.ipynb ├── 03-Treat-data-of-party-filiation.ipynb ├── Biggest-Asset-Evolution.ipynb ├── Deputies' tweets.ipynb ├── Dockerfile ├── __init__.py ├── clean-tweets.ipynb ├── jupyter_notebook_config.py ├── limpa-bens-candidatos-2018.ipynb ├── limpa-candidatos-2018.ipynb └── requirements.txt ├── manage.py ├── perfil ├── __init__.py ├── conftest.py ├── core │ ├── __init__.py │ ├── apps.py │ ├── management │ │ ├── __init__.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── link_affiliations_and_candidates.py │ │ │ ├── link_politicians_and_election_results.py │ │ │ ├── load_affiliations.py │ │ │ ├── load_assets.py │ │ │ ├── load_bills.py │ │ │ ├── load_candidates.py │ │ │ ├── load_income_statements.py │ │ │ ├── load_new_affiliations.py │ │ │ ├── load_rosies_suspicions.py │ │ │ ├── pre_cache.py │ │ │ ├── pre_calculate_stats.py │ │ │ ├── unlink_and_delete_politician_references.py │ │ │ ├── update_affiliation_history.py │ │ │ └── update_or_create_candidates.py │ │ └── parties_map_2022.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_create_asset_model.py │ │ ├── 0003_create_index_for_related_models.py │ │ ├── 0004_add_name_to_candidate_model.py │ │ ├── 0005_make_number_optional_in_candidate.py │ │ ├── 0006_add_voter_id_to_candidate.py │ │ ├── 0007_add_asset_history_to_politician.py │ │ ├── 0008_remove_m2m_affiliation_history.py │ │ ├── 0009_add_affiliation_history_to_politician_as_json_field.py │ │ ├── 0010_fix_typo_in_ethnicity_fields.py │ │ ├── 0011_add_election_history_to_politician.py │ │ ├── 0012_add_indexes_based_on_candidate_list_view.py │ │ ├── 0013_create_bill_model.py │ │ ├── 0014_add_bill_keywords_to_politician.py │ │ ├── 0015_add_rosies_suspicions_field_to_politician.py │ │ ├── 0016_django_3_2_update_use_big_auto_field_for_id.py │ │ ├── 0017_fix_models_to_support_2021_datasets.py │ │ ├── 0018_alter_affiliation_electoral_section.py │ │ ├── 0019_precalculatedstats.py │ │ ├── 0020_create_election_income_statement.py │ │ ├── 0021_add_candidate_owned_companies.py │ │ ├── 0022_alter_affiliation_electoral_section.py │ │ ├── 0023_alter_city_code.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── fixtures │ │ │ ├── affiliation.csv │ │ │ ├── bemdeclarado.csv │ │ │ ├── candidate.csv │ │ │ ├── candidatura.csv │ │ │ ├── candidatura.csv.xz │ │ │ ├── jarbas1.json │ │ │ ├── jarbas2.json │ │ │ ├── receita.csv │ │ │ └── senado.csv │ │ ├── test_affiliation_command.py │ │ ├── test_affiliation_model.py │ │ ├── test_asset_command.py │ │ ├── test_asset_model.py │ │ ├── test_bill_model.py │ │ ├── test_bills_command.py │ │ ├── test_candidate_command.py │ │ ├── test_candidate_model.py │ │ ├── test_candidate_view.py │ │ ├── test_city_model.py │ │ ├── test_clean_previous_data.py │ │ ├── test_core_command.py │ │ ├── test_economic_bonds_view.py │ │ ├── test_election_income_statement_model.py │ │ ├── test_home_view.py │ │ ├── test_income_statements_command.py │ │ ├── test_link_candidates_command.py │ │ ├── test_link_command.py │ │ ├── test_link_elections_command.py │ │ ├── test_party_model.py │ │ ├── test_politician_model.py │ │ ├── test_pre_cache_command.py │ │ ├── test_pre_calculate_stats_command.py │ │ ├── test_stats_views.py │ │ ├── test_suspicions_command.py │ │ ├── test_unlink_politicians_command.py │ │ └── test_update_candidate_command.py │ └── views.py ├── middlewares │ ├── __init__.py │ └── sqlprint.py ├── settings.py ├── urls.py └── wsgi.py ├── populate_company_info.sql ├── pytest.ini ├── requirements.txt └── setup.cfg /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/.pyup.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn perfil.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/codecov.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/docker-compose.staging.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jupyter/01-clean_brasil_io_election_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/01-clean_brasil_io_election_dataset.ipynb -------------------------------------------------------------------------------- /jupyter/02-Deputy-Biography.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/02-Deputy-Biography.ipynb -------------------------------------------------------------------------------- /jupyter/03-Treat-data-of-party-filiation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/03-Treat-data-of-party-filiation.ipynb -------------------------------------------------------------------------------- /jupyter/Biggest-Asset-Evolution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/Biggest-Asset-Evolution.ipynb -------------------------------------------------------------------------------- /jupyter/Deputies' tweets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/Deputies' tweets.ipynb -------------------------------------------------------------------------------- /jupyter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/Dockerfile -------------------------------------------------------------------------------- /jupyter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jupyter/clean-tweets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/clean-tweets.ipynb -------------------------------------------------------------------------------- /jupyter/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/jupyter_notebook_config.py -------------------------------------------------------------------------------- /jupyter/limpa-bens-candidatos-2018.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/limpa-bens-candidatos-2018.ipynb -------------------------------------------------------------------------------- /jupyter/limpa-candidatos-2018.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/limpa-candidatos-2018.ipynb -------------------------------------------------------------------------------- /jupyter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/jupyter/requirements.txt -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/manage.py -------------------------------------------------------------------------------- /perfil/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perfil/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/conftest.py -------------------------------------------------------------------------------- /perfil/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perfil/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/apps.py -------------------------------------------------------------------------------- /perfil/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perfil/core/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/__init__.py -------------------------------------------------------------------------------- /perfil/core/management/commands/link_affiliations_and_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/link_affiliations_and_candidates.py -------------------------------------------------------------------------------- /perfil/core/management/commands/link_politicians_and_election_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/link_politicians_and_election_results.py -------------------------------------------------------------------------------- /perfil/core/management/commands/load_affiliations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/load_affiliations.py -------------------------------------------------------------------------------- /perfil/core/management/commands/load_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/load_assets.py -------------------------------------------------------------------------------- /perfil/core/management/commands/load_bills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/load_bills.py -------------------------------------------------------------------------------- /perfil/core/management/commands/load_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/load_candidates.py -------------------------------------------------------------------------------- /perfil/core/management/commands/load_income_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/load_income_statements.py -------------------------------------------------------------------------------- /perfil/core/management/commands/load_new_affiliations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/load_new_affiliations.py -------------------------------------------------------------------------------- /perfil/core/management/commands/load_rosies_suspicions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/load_rosies_suspicions.py -------------------------------------------------------------------------------- /perfil/core/management/commands/pre_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/pre_cache.py -------------------------------------------------------------------------------- /perfil/core/management/commands/pre_calculate_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/pre_calculate_stats.py -------------------------------------------------------------------------------- /perfil/core/management/commands/unlink_and_delete_politician_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/unlink_and_delete_politician_references.py -------------------------------------------------------------------------------- /perfil/core/management/commands/update_affiliation_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/update_affiliation_history.py -------------------------------------------------------------------------------- /perfil/core/management/commands/update_or_create_candidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/commands/update_or_create_candidates.py -------------------------------------------------------------------------------- /perfil/core/management/parties_map_2022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/management/parties_map_2022.py -------------------------------------------------------------------------------- /perfil/core/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/managers.py -------------------------------------------------------------------------------- /perfil/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /perfil/core/migrations/0002_create_asset_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0002_create_asset_model.py -------------------------------------------------------------------------------- /perfil/core/migrations/0003_create_index_for_related_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0003_create_index_for_related_models.py -------------------------------------------------------------------------------- /perfil/core/migrations/0004_add_name_to_candidate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0004_add_name_to_candidate_model.py -------------------------------------------------------------------------------- /perfil/core/migrations/0005_make_number_optional_in_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0005_make_number_optional_in_candidate.py -------------------------------------------------------------------------------- /perfil/core/migrations/0006_add_voter_id_to_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0006_add_voter_id_to_candidate.py -------------------------------------------------------------------------------- /perfil/core/migrations/0007_add_asset_history_to_politician.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0007_add_asset_history_to_politician.py -------------------------------------------------------------------------------- /perfil/core/migrations/0008_remove_m2m_affiliation_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0008_remove_m2m_affiliation_history.py -------------------------------------------------------------------------------- /perfil/core/migrations/0009_add_affiliation_history_to_politician_as_json_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0009_add_affiliation_history_to_politician_as_json_field.py -------------------------------------------------------------------------------- /perfil/core/migrations/0010_fix_typo_in_ethnicity_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0010_fix_typo_in_ethnicity_fields.py -------------------------------------------------------------------------------- /perfil/core/migrations/0011_add_election_history_to_politician.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0011_add_election_history_to_politician.py -------------------------------------------------------------------------------- /perfil/core/migrations/0012_add_indexes_based_on_candidate_list_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0012_add_indexes_based_on_candidate_list_view.py -------------------------------------------------------------------------------- /perfil/core/migrations/0013_create_bill_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0013_create_bill_model.py -------------------------------------------------------------------------------- /perfil/core/migrations/0014_add_bill_keywords_to_politician.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0014_add_bill_keywords_to_politician.py -------------------------------------------------------------------------------- /perfil/core/migrations/0015_add_rosies_suspicions_field_to_politician.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0015_add_rosies_suspicions_field_to_politician.py -------------------------------------------------------------------------------- /perfil/core/migrations/0016_django_3_2_update_use_big_auto_field_for_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0016_django_3_2_update_use_big_auto_field_for_id.py -------------------------------------------------------------------------------- /perfil/core/migrations/0017_fix_models_to_support_2021_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0017_fix_models_to_support_2021_datasets.py -------------------------------------------------------------------------------- /perfil/core/migrations/0018_alter_affiliation_electoral_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0018_alter_affiliation_electoral_section.py -------------------------------------------------------------------------------- /perfil/core/migrations/0019_precalculatedstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0019_precalculatedstats.py -------------------------------------------------------------------------------- /perfil/core/migrations/0020_create_election_income_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0020_create_election_income_statement.py -------------------------------------------------------------------------------- /perfil/core/migrations/0021_add_candidate_owned_companies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0021_add_candidate_owned_companies.py -------------------------------------------------------------------------------- /perfil/core/migrations/0022_alter_affiliation_electoral_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0022_alter_affiliation_electoral_section.py -------------------------------------------------------------------------------- /perfil/core/migrations/0023_alter_city_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/migrations/0023_alter_city_code.py -------------------------------------------------------------------------------- /perfil/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perfil/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/models.py -------------------------------------------------------------------------------- /perfil/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perfil/core/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/conftest.py -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/affiliation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/affiliation.csv -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/bemdeclarado.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/bemdeclarado.csv -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/candidate.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/candidate.csv -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/candidatura.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/candidatura.csv -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/candidatura.csv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/candidatura.csv.xz -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/jarbas1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/jarbas1.json -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/jarbas2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/jarbas2.json -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/receita.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/receita.csv -------------------------------------------------------------------------------- /perfil/core/tests/fixtures/senado.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/fixtures/senado.csv -------------------------------------------------------------------------------- /perfil/core/tests/test_affiliation_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_affiliation_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_affiliation_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_affiliation_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_asset_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_asset_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_asset_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_asset_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_bill_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_bill_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_bills_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_bills_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_candidate_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_candidate_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_candidate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_candidate_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_candidate_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_candidate_view.py -------------------------------------------------------------------------------- /perfil/core/tests/test_city_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_city_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_clean_previous_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_clean_previous_data.py -------------------------------------------------------------------------------- /perfil/core/tests/test_core_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_core_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_economic_bonds_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_economic_bonds_view.py -------------------------------------------------------------------------------- /perfil/core/tests/test_election_income_statement_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_election_income_statement_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_home_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_home_view.py -------------------------------------------------------------------------------- /perfil/core/tests/test_income_statements_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_income_statements_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_link_candidates_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_link_candidates_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_link_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_link_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_link_elections_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_link_elections_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_party_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_party_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_politician_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_politician_model.py -------------------------------------------------------------------------------- /perfil/core/tests/test_pre_cache_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_pre_cache_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_pre_calculate_stats_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_pre_calculate_stats_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_stats_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_stats_views.py -------------------------------------------------------------------------------- /perfil/core/tests/test_suspicions_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_suspicions_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_unlink_politicians_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_unlink_politicians_command.py -------------------------------------------------------------------------------- /perfil/core/tests/test_update_candidate_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/tests/test_update_candidate_command.py -------------------------------------------------------------------------------- /perfil/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/core/views.py -------------------------------------------------------------------------------- /perfil/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perfil/middlewares/sqlprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/middlewares/sqlprint.py -------------------------------------------------------------------------------- /perfil/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/settings.py -------------------------------------------------------------------------------- /perfil/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/urls.py -------------------------------------------------------------------------------- /perfil/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/perfil/wsgi.py -------------------------------------------------------------------------------- /populate_company_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/populate_company_info.sql -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/perfil-politico/HEAD/setup.cfg --------------------------------------------------------------------------------