├── .codeclimate.yml ├── .coveragerc ├── .editorconfig ├── .flooignore ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pyup.yml ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile-elm ├── LICENSE ├── README.md ├── contrib ├── .env.sample ├── README.md ├── crontab │ ├── cleanup │ ├── crontab │ ├── receipts │ ├── update │ └── whistleblower ├── data │ ├── README.md │ ├── companies_sample.xz │ ├── reimbursements_sample.csv │ └── suspicions_sample.xz ├── deploy.sh └── update │ ├── .env.sample │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── ansible.cfg │ ├── cleanup.py │ └── update.yml ├── docker-compose.override.yml ├── docker-compose.prod.yml ├── docker-compose.yml ├── docs ├── digitalocean.png ├── logo.png └── okbr.png ├── elm-package.json ├── gulpfile.js ├── jarbas ├── README.md ├── __init__.py ├── celery.py ├── chamber_of_deputies │ ├── __init__.py │ ├── app.py │ ├── fields.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── receipts.py │ │ │ ├── receipts_text.py │ │ │ ├── reimbursements.py │ │ │ ├── searchvector.py │ │ │ ├── socialmedia.py │ │ │ ├── suspicions.py │ │ │ ├── tweet.py │ │ │ ├── tweets.py │ │ │ └── update.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_django_simple_history.py │ │ ├── 0003_remove_available_in_latest_dataset_field.py │ │ ├── 0004_alter_field_names_following_toolbox_renamings.py │ │ ├── 0005_create_social_media_model.py │ │ ├── 0006_change_on_delete_social_media_to_set_null.py │ │ ├── 0007_auto_20180913_0209.py │ │ ├── 0008_remove_related_field_social_media.py │ │ ├── 0009_add_index_to_term.py │ │ ├── 0010_remove_null_issue_date_rows.py │ │ ├── 0011_make_issue_date_required.py │ │ ├── 0012_make_party_field_longer.py │ │ └── __init__.py │ ├── models.py │ ├── querysets.py │ ├── serializers.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_applicant_view.py │ │ ├── test_receipt_class.py │ │ ├── test_receipts_command.py │ │ ├── test_receipts_text_command.py │ │ ├── test_reimbursement_model.py │ │ ├── test_reimbursement_task.py │ │ ├── test_reimbursement_view.py │ │ ├── test_reimbursements_command.py │ │ ├── test_same_day_view.py │ │ ├── test_searchvector_command.py │ │ ├── test_serializers.py │ │ ├── test_subquota_view.py │ │ ├── test_suspicions_command.py │ │ ├── test_tweet_model.py │ │ └── test_tweets_command.py │ ├── twitter.py │ ├── urls.py │ └── views.py ├── core │ ├── __init__.py │ ├── app.py │ ├── context_processors.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── companies.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_indexes.py │ │ ├── 0003_remove_some_indexes.py │ │ ├── 0004_add_receipt_url.py │ │ ├── 0005_add_receipt_url_last_update.py │ │ ├── 0006_lazy_backend_receipt_url.py │ │ ├── 0007_add_suppliers.py │ │ ├── 0008_optimize_char_field_lengths.py │ │ ├── 0009_add_latitude_and_longitude.py │ │ ├── 0010_extract_receipt.py │ │ ├── 0011_subquota_description_length.py │ │ ├── 0012_use_date_not_datetime.py │ │ ├── 0013_create_model_reimbursement.py │ │ ├── 0014_add_suspicions_and_probability_to_reimbursements.py │ │ ├── 0015_add_receipt_to_reimbursement.py │ │ ├── 0016_add_custom_ordering_to_reimbursement.py │ │ ├── 0017_make_some_fields_optional.py │ │ ├── 0018_make_issue_date_required.py │ │ ├── 0019_cleanup_remove_old_api.py │ │ ├── 0020_rename_supplier_to_company.py │ │ ├── 0021_make_reciept_fetched_a_db_index.py │ │ ├── 0022_remove_unique_together_from_reimbursement.py │ │ ├── 0023_add_last_update_field_to_reimbursements.py │ │ ├── 0024_add_available_in_latest_dataset_field_to_reimbursement.py │ │ ├── 0025_historicalreimbursement.py │ │ ├── 0026_order_reimbursements_by_year_and_issue_date.py │ │ ├── 0027_translate_verbose_names.py │ │ ├── 0028_auto_20170601_1701.py │ │ ├── 0029_make_issue_date_an_index.py │ │ ├── 0030_remove_unused_indexes.py │ │ ├── 0031_add_index_together_for_reimbursement.py │ │ ├── 0032_auto_20170613_0641.py │ │ ├── 0033_add_index_for_subquota_description.py │ │ ├── 0034_auto_20170629_2150.py │ │ ├── 0035_create_model_tweet.py │ │ ├── 0036_alter_tweet_status_to_decimal.py │ │ ├── 0037_auto_20170727_1624.py │ │ ├── 0038_auto_20170728_1748.py │ │ ├── 0039_add_search_vector_to_reimbursement.py │ │ ├── 0040_create_gin_index_with_search_vector.py │ │ ├── 0041_migrate_data_to_chamber_of_deputies_app.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── reimbursements.csv │ │ ├── test_companies_command.py │ │ ├── test_company_model.py │ │ ├── test_company_view.py │ │ ├── test_healthcheck_url.py │ │ ├── test_home_view.py │ │ └── test_load_command.py │ ├── urls.py │ └── views.py ├── dashboard │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── list_filters.py │ │ ├── paginators.py │ │ ├── subquotas.py │ │ └── widgets.py │ ├── static │ │ ├── dashboard.css │ │ └── dashboard.js │ ├── templates │ │ ├── admin │ │ │ ├── base.html │ │ │ └── base_site.html │ │ └── dashboard │ │ │ └── reimbursement_summary_change_list.html │ ├── templatetags │ │ ├── __init__.py │ │ └── dashboard.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_dashboard_admin.py │ │ └── test_dashboard_view.py │ └── urls.py ├── layers │ ├── __init__.py │ ├── elm │ │ ├── Format │ │ │ ├── CnpjCpf.elm │ │ │ ├── Date.elm │ │ │ ├── Price.elm │ │ │ └── Url.elm │ │ ├── Internationalization.elm │ │ ├── Internationalization │ │ │ ├── Common.elm │ │ │ ├── DocumentType.elm │ │ │ ├── Reimbursement │ │ │ │ ├── Common.elm │ │ │ │ ├── Company.elm │ │ │ │ ├── Field.elm │ │ │ │ ├── Fieldset.elm │ │ │ │ ├── Receipt.elm │ │ │ │ ├── Search.elm │ │ │ │ └── Tweet.elm │ │ │ ├── Suspicion.elm │ │ │ └── Types.elm │ │ ├── Layout.elm │ │ ├── Main.elm │ │ ├── Model.elm │ │ ├── Reimbursement │ │ │ ├── Company │ │ │ │ ├── Decoder.elm │ │ │ │ ├── Model.elm │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── Decoder.elm │ │ │ ├── Fields.elm │ │ │ ├── Map │ │ │ │ ├── Model.elm │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── Model.elm │ │ │ ├── Receipt │ │ │ │ ├── Decoder.elm │ │ │ │ ├── Model.elm │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── RelatedTable │ │ │ │ ├── Decoder.elm │ │ │ │ ├── Model.elm │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── SameDay │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── SameSubquota │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── Search │ │ │ │ ├── Model.elm │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── Tweet │ │ │ │ ├── Model.elm │ │ │ │ ├── Update.elm │ │ │ │ └── View.elm │ │ │ ├── Update.elm │ │ │ └── View.elm │ │ ├── Update.elm │ │ └── View.elm │ ├── static │ │ ├── digitalocean.png │ │ ├── favicon │ │ │ ├── android-icon-144x144.png │ │ │ ├── android-icon-192x192.png │ │ │ ├── android-icon-36x36.png │ │ │ ├── android-icon-48x48.png │ │ │ ├── android-icon-72x72.png │ │ │ ├── android-icon-96x96.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ ├── apple-icon-precomposed.png │ │ │ ├── apple-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ └── image │ │ │ ├── facebook-icon.png │ │ │ ├── receipt_icon.png │ │ │ └── twitter-icon.png │ ├── templates │ │ └── layers │ │ │ └── home.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_home_view.py │ │ └── test_static_files.py │ ├── urls.py │ └── views.py ├── public_admin │ ├── __init__.py │ ├── admin.py │ ├── sites.py │ └── tests │ │ ├── __init__.py │ │ ├── test_dummy_user.py │ │ └── test_public_admin_site.py ├── settings.py ├── storages.py ├── urls.py └── wsgi.py ├── manage.py ├── package.json ├── requirements-dev.txt ├── requirements.txt ├── research ├── Dockerfile ├── requirements.txt ├── setup └── src │ ├── backup_data.py │ ├── fetch_campaign_donations.py │ ├── fetch_cnpj_info.py │ ├── fetch_congressperson_details.py │ ├── fetch_deputies_advisors.py │ ├── fetch_federal_budget_datasets.py │ ├── fetch_federal_sanctions.py │ ├── fetch_foursquare_info.py │ ├── fetch_inbox.py │ ├── fetch_purchase_suppliers.py │ ├── fetch_receipts.py │ ├── fetch_sex_places.py │ ├── fetch_tse_data.py │ ├── fetch_yelp_info.py │ ├── geocode_addresses.py │ ├── get_family_names.py │ ├── grequests_transparency_portal_cities.py │ ├── group_receipts.py │ ├── table_config.json │ ├── translation_table.py │ └── utils.py ├── rosie ├── .coveragerc ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Dockerfile ├── README.md ├── requirements.txt ├── rosie.py └── rosie │ ├── __init__.py │ ├── chamber_of_deputies │ ├── __init__.py │ ├── adapter.py │ ├── classifiers │ │ ├── __init__.py │ │ ├── election_expenses_classifier.py │ │ ├── irregular_companies_classifier.py │ │ ├── meal_price_outlier_classifier.py │ │ ├── monthly_subquota_limit_classifier.py │ │ └── traveled_speeds_classifier.py │ ├── settings.py │ └── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ ├── companies.xz │ │ ├── meal_price_outlier_classifier.csv │ │ ├── monthly_subquota_limit_classifier.csv │ │ ├── reimbursements-2009.csv │ │ ├── reimbursements-2010.csv │ │ ├── reimbursements-2011.csv │ │ ├── reimbursements-2012.csv │ │ ├── reimbursements-2016.csv │ │ └── traveled_speeds_classifier.csv │ │ ├── test_adapter.py │ │ ├── test_chamber_of_deputies.py │ │ ├── test_election_expenses_classifier.py │ │ ├── test_irregular_companies_classifier.py │ │ ├── test_meal_price_outlier_classifier.py │ │ ├── test_monthly_subquota_limit_classifier.py │ │ └── test_traveled_speeds_classifier.py │ ├── core │ ├── __init__.py │ ├── classifiers │ │ ├── __init__.py │ │ └── invalid_cnpj_cpf_classifier.py │ └── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ └── invalid_cnpj_cpf_classifier.csv │ │ ├── test_core_init.py │ │ └── test_invalid_cnpj_cpf_classifier.py │ └── federal_senate │ ├── __init__.py │ ├── adapter.py │ ├── settings.py │ └── tests │ ├── __init__.py │ ├── fixtures │ └── federal_senate_reimbursements.xz │ ├── test_adapter.py │ └── test_federal_senate.py └── setup.cfg /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flooignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- 1 | schedule: "every month" 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/Dockerfile-elm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/README.md -------------------------------------------------------------------------------- /contrib/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/.env.sample -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/crontab/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/crontab/cleanup -------------------------------------------------------------------------------- /contrib/crontab/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/crontab/crontab -------------------------------------------------------------------------------- /contrib/crontab/receipts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/crontab/receipts -------------------------------------------------------------------------------- /contrib/crontab/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/crontab/update -------------------------------------------------------------------------------- /contrib/crontab/whistleblower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/crontab/whistleblower -------------------------------------------------------------------------------- /contrib/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/data/README.md -------------------------------------------------------------------------------- /contrib/data/companies_sample.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/data/companies_sample.xz -------------------------------------------------------------------------------- /contrib/data/reimbursements_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/data/reimbursements_sample.csv -------------------------------------------------------------------------------- /contrib/data/suspicions_sample.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/data/suspicions_sample.xz -------------------------------------------------------------------------------- /contrib/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/deploy.sh -------------------------------------------------------------------------------- /contrib/update/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/update/.env.sample -------------------------------------------------------------------------------- /contrib/update/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/update/Pipfile -------------------------------------------------------------------------------- /contrib/update/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/update/Pipfile.lock -------------------------------------------------------------------------------- /contrib/update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/update/README.md -------------------------------------------------------------------------------- /contrib/update/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | host_key_checking = False 3 | ServerAliveInterval=30 4 | -------------------------------------------------------------------------------- /contrib/update/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/update/cleanup.py -------------------------------------------------------------------------------- /contrib/update/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/contrib/update/update.yml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/digitalocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/docs/digitalocean.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/okbr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/docs/okbr.png -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/elm-package.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jarbas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/README.md -------------------------------------------------------------------------------- /jarbas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/__init__.py -------------------------------------------------------------------------------- /jarbas/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/celery.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/app.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/fields.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/receipts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/receipts.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/receipts_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/receipts_text.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/reimbursements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/reimbursements.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/searchvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/searchvector.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/socialmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/socialmedia.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/suspicions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/suspicions.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/tweet.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/tweets.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/management/commands/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/management/commands/update.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0001_initial.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0002_remove_django_simple_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0002_remove_django_simple_history.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0003_remove_available_in_latest_dataset_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0003_remove_available_in_latest_dataset_field.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0004_alter_field_names_following_toolbox_renamings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0004_alter_field_names_following_toolbox_renamings.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0005_create_social_media_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0005_create_social_media_model.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0006_change_on_delete_social_media_to_set_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0006_change_on_delete_social_media_to_set_null.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0007_auto_20180913_0209.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0007_auto_20180913_0209.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0008_remove_related_field_social_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0008_remove_related_field_social_media.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0009_add_index_to_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0009_add_index_to_term.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0010_remove_null_issue_date_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0010_remove_null_issue_date_rows.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0011_make_issue_date_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0011_make_issue_date_required.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/0012_make_party_field_longer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/migrations/0012_make_party_field_longer.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/models.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/querysets.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/serializers.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tasks.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/__init__.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_applicant_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_applicant_view.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_receipt_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_receipt_class.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_receipts_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_receipts_command.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_receipts_text_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_receipts_text_command.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_reimbursement_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_reimbursement_model.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_reimbursement_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_reimbursement_task.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_reimbursement_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_reimbursement_view.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_reimbursements_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_reimbursements_command.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_same_day_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_same_day_view.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_searchvector_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_searchvector_command.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_serializers.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_subquota_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_subquota_view.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_suspicions_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_suspicions_command.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_tweet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_tweet_model.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/tests/test_tweets_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/tests/test_tweets_command.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/twitter.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/urls.py -------------------------------------------------------------------------------- /jarbas/chamber_of_deputies/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/chamber_of_deputies/views.py -------------------------------------------------------------------------------- /jarbas/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/core/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/app.py -------------------------------------------------------------------------------- /jarbas/core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/context_processors.py -------------------------------------------------------------------------------- /jarbas/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/core/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/management/commands/__init__.py -------------------------------------------------------------------------------- /jarbas/core/management/commands/companies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/management/commands/companies.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0002_add_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0002_add_indexes.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0003_remove_some_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0003_remove_some_indexes.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0004_add_receipt_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0004_add_receipt_url.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0005_add_receipt_url_last_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0005_add_receipt_url_last_update.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0006_lazy_backend_receipt_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0006_lazy_backend_receipt_url.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0007_add_suppliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0007_add_suppliers.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0008_optimize_char_field_lengths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0008_optimize_char_field_lengths.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0009_add_latitude_and_longitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0009_add_latitude_and_longitude.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0010_extract_receipt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0010_extract_receipt.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0011_subquota_description_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0011_subquota_description_length.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0012_use_date_not_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0012_use_date_not_datetime.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0013_create_model_reimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0013_create_model_reimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0014_add_suspicions_and_probability_to_reimbursements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0014_add_suspicions_and_probability_to_reimbursements.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0015_add_receipt_to_reimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0015_add_receipt_to_reimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0016_add_custom_ordering_to_reimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0016_add_custom_ordering_to_reimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0017_make_some_fields_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0017_make_some_fields_optional.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0018_make_issue_date_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0018_make_issue_date_required.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0019_cleanup_remove_old_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0019_cleanup_remove_old_api.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0020_rename_supplier_to_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0020_rename_supplier_to_company.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0021_make_reciept_fetched_a_db_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0021_make_reciept_fetched_a_db_index.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0022_remove_unique_together_from_reimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0022_remove_unique_together_from_reimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0023_add_last_update_field_to_reimbursements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0023_add_last_update_field_to_reimbursements.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0024_add_available_in_latest_dataset_field_to_reimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0024_add_available_in_latest_dataset_field_to_reimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0025_historicalreimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0025_historicalreimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0026_order_reimbursements_by_year_and_issue_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0026_order_reimbursements_by_year_and_issue_date.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0027_translate_verbose_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0027_translate_verbose_names.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0028_auto_20170601_1701.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0028_auto_20170601_1701.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0029_make_issue_date_an_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0029_make_issue_date_an_index.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0030_remove_unused_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0030_remove_unused_indexes.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0031_add_index_together_for_reimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0031_add_index_together_for_reimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0032_auto_20170613_0641.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0032_auto_20170613_0641.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0033_add_index_for_subquota_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0033_add_index_for_subquota_description.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0034_auto_20170629_2150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0034_auto_20170629_2150.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0035_create_model_tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0035_create_model_tweet.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0036_alter_tweet_status_to_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0036_alter_tweet_status_to_decimal.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0037_auto_20170727_1624.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0037_auto_20170727_1624.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0038_auto_20170728_1748.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0038_auto_20170728_1748.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0039_add_search_vector_to_reimbursement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0039_add_search_vector_to_reimbursement.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0040_create_gin_index_with_search_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0040_create_gin_index_with_search_vector.py -------------------------------------------------------------------------------- /jarbas/core/migrations/0041_migrate_data_to_chamber_of_deputies_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/migrations/0041_migrate_data_to_chamber_of_deputies_app.py -------------------------------------------------------------------------------- /jarbas/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/models.py -------------------------------------------------------------------------------- /jarbas/core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/serializers.py -------------------------------------------------------------------------------- /jarbas/core/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/__init__.py -------------------------------------------------------------------------------- /jarbas/core/tests/fixtures/reimbursements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/fixtures/reimbursements.csv -------------------------------------------------------------------------------- /jarbas/core/tests/test_companies_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/test_companies_command.py -------------------------------------------------------------------------------- /jarbas/core/tests/test_company_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/test_company_model.py -------------------------------------------------------------------------------- /jarbas/core/tests/test_company_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/test_company_view.py -------------------------------------------------------------------------------- /jarbas/core/tests/test_healthcheck_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/test_healthcheck_url.py -------------------------------------------------------------------------------- /jarbas/core/tests/test_home_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/test_home_view.py -------------------------------------------------------------------------------- /jarbas/core/tests/test_load_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/tests/test_load_command.py -------------------------------------------------------------------------------- /jarbas/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/urls.py -------------------------------------------------------------------------------- /jarbas/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/core/views.py -------------------------------------------------------------------------------- /jarbas/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/dashboard/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/admin/__init__.py -------------------------------------------------------------------------------- /jarbas/dashboard/admin/list_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/admin/list_filters.py -------------------------------------------------------------------------------- /jarbas/dashboard/admin/paginators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/admin/paginators.py -------------------------------------------------------------------------------- /jarbas/dashboard/admin/subquotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/admin/subquotas.py -------------------------------------------------------------------------------- /jarbas/dashboard/admin/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/admin/widgets.py -------------------------------------------------------------------------------- /jarbas/dashboard/static/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/static/dashboard.css -------------------------------------------------------------------------------- /jarbas/dashboard/static/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/static/dashboard.js -------------------------------------------------------------------------------- /jarbas/dashboard/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/templates/admin/base.html -------------------------------------------------------------------------------- /jarbas/dashboard/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/templates/admin/base_site.html -------------------------------------------------------------------------------- /jarbas/dashboard/templates/dashboard/reimbursement_summary_change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/templates/dashboard/reimbursement_summary_change_list.html -------------------------------------------------------------------------------- /jarbas/dashboard/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/dashboard/templatetags/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/templatetags/dashboard.py -------------------------------------------------------------------------------- /jarbas/dashboard/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/dashboard/tests/test_dashboard_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/tests/test_dashboard_admin.py -------------------------------------------------------------------------------- /jarbas/dashboard/tests/test_dashboard_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/tests/test_dashboard_view.py -------------------------------------------------------------------------------- /jarbas/dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/dashboard/urls.py -------------------------------------------------------------------------------- /jarbas/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/layers/elm/Format/CnpjCpf.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Format/CnpjCpf.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Format/Date.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Format/Date.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Format/Price.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Format/Price.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Format/Url.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Format/Url.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Common.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Common.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/DocumentType.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/DocumentType.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Reimbursement/Common.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Reimbursement/Common.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Reimbursement/Company.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Reimbursement/Company.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Reimbursement/Field.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Reimbursement/Field.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Reimbursement/Fieldset.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Reimbursement/Fieldset.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Reimbursement/Receipt.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Reimbursement/Receipt.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Reimbursement/Search.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Reimbursement/Search.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Reimbursement/Tweet.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Reimbursement/Tweet.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Suspicion.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Suspicion.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Internationalization/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Internationalization/Types.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Layout.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Layout.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Main.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Company/Decoder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Company/Decoder.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Company/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Company/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Company/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Company/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Company/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Company/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Decoder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Decoder.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Fields.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Fields.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Map/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Map/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Map/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Map/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Map/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Map/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Receipt/Decoder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Receipt/Decoder.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Receipt/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Receipt/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Receipt/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Receipt/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Receipt/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Receipt/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/RelatedTable/Decoder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/RelatedTable/Decoder.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/RelatedTable/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/RelatedTable/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/RelatedTable/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/RelatedTable/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/RelatedTable/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/RelatedTable/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/SameDay/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/SameDay/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/SameDay/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/SameDay/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/SameSubquota/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/SameSubquota/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/SameSubquota/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/SameSubquota/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Search/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Search/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Search/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Search/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Search/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Search/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Tweet/Model.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Tweet/Model.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Tweet/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Tweet/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Tweet/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Tweet/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Reimbursement/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Reimbursement/View.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/Update.elm -------------------------------------------------------------------------------- /jarbas/layers/elm/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/elm/View.elm -------------------------------------------------------------------------------- /jarbas/layers/static/digitalocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/digitalocean.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/apple-icon.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/browserconfig.xml -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/favicon.ico -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/manifest.json -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /jarbas/layers/static/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /jarbas/layers/static/image/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/image/facebook-icon.png -------------------------------------------------------------------------------- /jarbas/layers/static/image/receipt_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/image/receipt_icon.png -------------------------------------------------------------------------------- /jarbas/layers/static/image/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/static/image/twitter-icon.png -------------------------------------------------------------------------------- /jarbas/layers/templates/layers/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/templates/layers/home.html -------------------------------------------------------------------------------- /jarbas/layers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/layers/tests/test_home_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/tests/test_home_view.py -------------------------------------------------------------------------------- /jarbas/layers/tests/test_static_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/tests/test_static_files.py -------------------------------------------------------------------------------- /jarbas/layers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/urls.py -------------------------------------------------------------------------------- /jarbas/layers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/layers/views.py -------------------------------------------------------------------------------- /jarbas/public_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/public_admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/public_admin/admin.py -------------------------------------------------------------------------------- /jarbas/public_admin/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/public_admin/sites.py -------------------------------------------------------------------------------- /jarbas/public_admin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jarbas/public_admin/tests/test_dummy_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/public_admin/tests/test_dummy_user.py -------------------------------------------------------------------------------- /jarbas/public_admin/tests/test_public_admin_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/public_admin/tests/test_public_admin_site.py -------------------------------------------------------------------------------- /jarbas/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/settings.py -------------------------------------------------------------------------------- /jarbas/storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/storages.py -------------------------------------------------------------------------------- /jarbas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/urls.py -------------------------------------------------------------------------------- /jarbas/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/jarbas/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/package.json -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/requirements.txt -------------------------------------------------------------------------------- /research/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/Dockerfile -------------------------------------------------------------------------------- /research/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/requirements.txt -------------------------------------------------------------------------------- /research/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/setup -------------------------------------------------------------------------------- /research/src/backup_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/backup_data.py -------------------------------------------------------------------------------- /research/src/fetch_campaign_donations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_campaign_donations.py -------------------------------------------------------------------------------- /research/src/fetch_cnpj_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_cnpj_info.py -------------------------------------------------------------------------------- /research/src/fetch_congressperson_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_congressperson_details.py -------------------------------------------------------------------------------- /research/src/fetch_deputies_advisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_deputies_advisors.py -------------------------------------------------------------------------------- /research/src/fetch_federal_budget_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_federal_budget_datasets.py -------------------------------------------------------------------------------- /research/src/fetch_federal_sanctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_federal_sanctions.py -------------------------------------------------------------------------------- /research/src/fetch_foursquare_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_foursquare_info.py -------------------------------------------------------------------------------- /research/src/fetch_inbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_inbox.py -------------------------------------------------------------------------------- /research/src/fetch_purchase_suppliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_purchase_suppliers.py -------------------------------------------------------------------------------- /research/src/fetch_receipts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_receipts.py -------------------------------------------------------------------------------- /research/src/fetch_sex_places.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_sex_places.py -------------------------------------------------------------------------------- /research/src/fetch_tse_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_tse_data.py -------------------------------------------------------------------------------- /research/src/fetch_yelp_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/fetch_yelp_info.py -------------------------------------------------------------------------------- /research/src/geocode_addresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/geocode_addresses.py -------------------------------------------------------------------------------- /research/src/get_family_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/get_family_names.py -------------------------------------------------------------------------------- /research/src/grequests_transparency_portal_cities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/grequests_transparency_portal_cities.py -------------------------------------------------------------------------------- /research/src/group_receipts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/group_receipts.py -------------------------------------------------------------------------------- /research/src/table_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/table_config.json -------------------------------------------------------------------------------- /research/src/translation_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/translation_table.py -------------------------------------------------------------------------------- /research/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/research/src/utils.py -------------------------------------------------------------------------------- /rosie/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = rosie 3 | -------------------------------------------------------------------------------- /rosie/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /rosie/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /rosie/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/.gitignore -------------------------------------------------------------------------------- /rosie/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/Dockerfile -------------------------------------------------------------------------------- /rosie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/README.md -------------------------------------------------------------------------------- /rosie/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/requirements.txt -------------------------------------------------------------------------------- /rosie/rosie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie.py -------------------------------------------------------------------------------- /rosie/rosie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/__init__.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/adapter.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/classifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/classifiers/__init__.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/classifiers/election_expenses_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/classifiers/election_expenses_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/classifiers/irregular_companies_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/classifiers/irregular_companies_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/classifiers/meal_price_outlier_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/classifiers/meal_price_outlier_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/classifiers/monthly_subquota_limit_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/classifiers/monthly_subquota_limit_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/classifiers/traveled_speeds_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/classifiers/traveled_speeds_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/settings.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/companies.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/companies.xz -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/meal_price_outlier_classifier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/meal_price_outlier_classifier.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/monthly_subquota_limit_classifier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/monthly_subquota_limit_classifier.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2009.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2009.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2010.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2011.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2012.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/reimbursements-2016.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/fixtures/traveled_speeds_classifier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/fixtures/traveled_speeds_classifier.csv -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/test_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/test_adapter.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/test_chamber_of_deputies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/test_chamber_of_deputies.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/test_election_expenses_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/test_election_expenses_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/test_irregular_companies_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/test_irregular_companies_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/test_meal_price_outlier_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/test_meal_price_outlier_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/test_monthly_subquota_limit_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/test_monthly_subquota_limit_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/chamber_of_deputies/tests/test_traveled_speeds_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/chamber_of_deputies/tests/test_traveled_speeds_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/core/__init__.py -------------------------------------------------------------------------------- /rosie/rosie/core/classifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/core/classifiers/__init__.py -------------------------------------------------------------------------------- /rosie/rosie/core/classifiers/invalid_cnpj_cpf_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/core/classifiers/invalid_cnpj_cpf_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rosie/rosie/core/tests/fixtures/invalid_cnpj_cpf_classifier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/core/tests/fixtures/invalid_cnpj_cpf_classifier.csv -------------------------------------------------------------------------------- /rosie/rosie/core/tests/test_core_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/core/tests/test_core_init.py -------------------------------------------------------------------------------- /rosie/rosie/core/tests/test_invalid_cnpj_cpf_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/core/tests/test_invalid_cnpj_cpf_classifier.py -------------------------------------------------------------------------------- /rosie/rosie/federal_senate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/federal_senate/__init__.py -------------------------------------------------------------------------------- /rosie/rosie/federal_senate/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/federal_senate/adapter.py -------------------------------------------------------------------------------- /rosie/rosie/federal_senate/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/federal_senate/settings.py -------------------------------------------------------------------------------- /rosie/rosie/federal_senate/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rosie/rosie/federal_senate/tests/fixtures/federal_senate_reimbursements.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/federal_senate/tests/fixtures/federal_senate_reimbursements.xz -------------------------------------------------------------------------------- /rosie/rosie/federal_senate/tests/test_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn-brasil/serenata-de-amor/HEAD/rosie/rosie/federal_senate/tests/test_adapter.py -------------------------------------------------------------------------------- /rosie/rosie/federal_senate/tests/test_federal_senate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [pep8] 2 | max-line-length = 120 3 | --------------------------------------------------------------------------------