├── .github └── ISSUE_TEMPLATE │ └── new_data_source.md ├── Dockerfile ├── LICENSE ├── README.md ├── bros.py ├── cli.py ├── config.yaml ├── content └── Crushing crumbs of information to eat a whole cake.pdf ├── requirements.txt ├── sources └── Brazil │ ├── azul.yaml │ ├── celular_prepago.yaml │ ├── cemig_fatura_eletrecidade_whatsapp.yaml │ ├── consulta_restituicao_irpf.yaml │ ├── consulta_situacao_cpf.yaml │ ├── consulta_situacao_eleitoral.yaml │ ├── consulta_titulo_local_votacao.yaml │ ├── detran_rj_curso.yaml │ ├── detran_rj_pontos_cnh.yaml │ ├── filiacao_partidaria.yaml │ ├── naturgy_fatura_gas_whatsapp.yaml │ ├── neoenergia_recuperar_acesso.yaml │ ├── operadora_celular.yaml │ ├── pix.yaml │ ├── registro_br.yaml │ ├── tse_certificado_quitacao_eleitoral.yaml │ └── vivo_recuperar_email.yaml └── tests ├── fake_sources ├── source1.yaml ├── source2.yaml ├── source3.yaml ├── source4.yaml ├── source5.yaml ├── source6.yaml └── source7.yaml └── test_files.py /.github/ISSUE_TEMPLATE/new_data_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/.github/ISSUE_TEMPLATE/new_data_source.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/README.md -------------------------------------------------------------------------------- /bros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/bros.py -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/cli.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/config.yaml -------------------------------------------------------------------------------- /content/Crushing crumbs of information to eat a whole cake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/content/Crushing crumbs of information to eat a whole cake.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/requirements.txt -------------------------------------------------------------------------------- /sources/Brazil/azul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/azul.yaml -------------------------------------------------------------------------------- /sources/Brazil/celular_prepago.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/celular_prepago.yaml -------------------------------------------------------------------------------- /sources/Brazil/cemig_fatura_eletrecidade_whatsapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/cemig_fatura_eletrecidade_whatsapp.yaml -------------------------------------------------------------------------------- /sources/Brazil/consulta_restituicao_irpf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/consulta_restituicao_irpf.yaml -------------------------------------------------------------------------------- /sources/Brazil/consulta_situacao_cpf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/consulta_situacao_cpf.yaml -------------------------------------------------------------------------------- /sources/Brazil/consulta_situacao_eleitoral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/consulta_situacao_eleitoral.yaml -------------------------------------------------------------------------------- /sources/Brazil/consulta_titulo_local_votacao.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/consulta_titulo_local_votacao.yaml -------------------------------------------------------------------------------- /sources/Brazil/detran_rj_curso.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/detran_rj_curso.yaml -------------------------------------------------------------------------------- /sources/Brazil/detran_rj_pontos_cnh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/detran_rj_pontos_cnh.yaml -------------------------------------------------------------------------------- /sources/Brazil/filiacao_partidaria.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/filiacao_partidaria.yaml -------------------------------------------------------------------------------- /sources/Brazil/naturgy_fatura_gas_whatsapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/naturgy_fatura_gas_whatsapp.yaml -------------------------------------------------------------------------------- /sources/Brazil/neoenergia_recuperar_acesso.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/neoenergia_recuperar_acesso.yaml -------------------------------------------------------------------------------- /sources/Brazil/operadora_celular.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/operadora_celular.yaml -------------------------------------------------------------------------------- /sources/Brazil/pix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/pix.yaml -------------------------------------------------------------------------------- /sources/Brazil/registro_br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/registro_br.yaml -------------------------------------------------------------------------------- /sources/Brazil/tse_certificado_quitacao_eleitoral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/tse_certificado_quitacao_eleitoral.yaml -------------------------------------------------------------------------------- /sources/Brazil/vivo_recuperar_email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/sources/Brazil/vivo_recuperar_email.yaml -------------------------------------------------------------------------------- /tests/fake_sources/source1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/fake_sources/source1.yaml -------------------------------------------------------------------------------- /tests/fake_sources/source2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/fake_sources/source2.yaml -------------------------------------------------------------------------------- /tests/fake_sources/source3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/fake_sources/source3.yaml -------------------------------------------------------------------------------- /tests/fake_sources/source4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/fake_sources/source4.yaml -------------------------------------------------------------------------------- /tests/fake_sources/source5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/fake_sources/source5.yaml -------------------------------------------------------------------------------- /tests/fake_sources/source6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/fake_sources/source6.yaml -------------------------------------------------------------------------------- /tests/fake_sources/source7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/fake_sources/source7.yaml -------------------------------------------------------------------------------- /tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pr0teus/BROS/HEAD/tests/test_files.py --------------------------------------------------------------------------------