├── .bumpversion.cfg ├── .editorconfig ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── correios ├── __init__.py ├── client.py ├── data │ ├── carrier_logo.png │ ├── carrier_logo_bw.png │ ├── default_logo.png │ ├── economic.gif │ ├── economic.png │ ├── express.gif │ ├── express.png │ ├── posting_list_schema.xsd │ ├── premium.gif │ ├── premium.png │ ├── standard.gif │ ├── standard.png │ └── wsdls │ │ ├── AtendeCliente-production.wsdl │ │ ├── AtendeCliente-test.wsdl │ │ ├── CalcPrecoPrazo.asmx │ │ ├── Rastro.wsdl │ │ └── Rastro_schema1.xsd ├── exceptions.py ├── models │ ├── __init__.py │ ├── address.py │ ├── builders.py │ ├── data.py │ ├── posting.py │ └── user.py ├── renderers │ ├── __init__.py │ └── pdf.py ├── serializers.py ├── soap.py ├── update_wsdl.py ├── utils.py └── xml_utils.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── documentation ├── EVENTOS_SMS.pdf ├── Guia Tecnico - Embalagens RPC.pdf ├── Guia_Tecnico_CepNet_e_2D_Triagem_Enderecamento_FAC_SIMPLES_11_04_16-revisado-Final.pdf ├── LayoutEtiqueta2D.pdf ├── Manual-de-Implementacao-do-Calculo-Remoto-de-Precos-e-Prazos.pdf ├── Manual_do_Usuario_SigepWeb.pdf ├── Rastreamento-de-Objetos-SROXML_28fev14.pdf ├── SCPP_manual_implementacao_calculo_remoto_de_precos_e_prazos.pdf ├── gen_data_module.py ├── logo_correios.svg ├── logo_correios_bw.svg ├── logo_correios_vertical.svg ├── logo_shipping_categories.svg ├── manual_rastreamentoobjetosws.pdf ├── modelo.xml ├── pesquisa.html ├── process_correios_status.py ├── status_correios_from_manual.csv ├── status_correios_from_site.csv ├── v1-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf ├── v2-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf ├── v3-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf ├── v4-Manual_de_Implementacao_do_Web_Service_SIGEP_WEB.pdf └── v5-Manual_de_Implementacao_do_Web_Service_SIGEP_WEB.pdf ├── pyproject.toml ├── pytest.ini ├── requirements-dev.txt ├── requirements-test.txt ├── requirements.txt ├── samples ├── __init__.py └── request_tracking_codes.py ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── fixtures │ ├── cassettes │ │ ├── test_basic_client.yaml │ │ ├── test_basic_update.yaml │ │ ├── test_calculate_delivery_time.yaml │ │ ├── test_calculate_delivery_time_service_not_allowed_for_path.yaml │ │ ├── test_calculate_freight_with_error.yaml │ │ ├── test_calculate_freight_with_error_code_10_restricted.yaml │ │ ├── test_calculate_freight_with_error_code_11_restricted.yaml │ │ ├── test_calculate_freight_with_error_code_9_restricted.yaml │ │ ├── test_calculate_freights.yaml │ │ ├── test_calculate_freights_with_extra_services.yaml │ │ ├── test_client_authentication_error.yaml │ │ ├── test_client_canceled_posting_card_error.yaml │ │ ├── test_client_nonexistent_posting_card_error.yaml │ │ ├── test_close_posting_list.yaml │ │ ├── test_find_zip_code.yaml │ │ ├── test_generate_verification_digit.yaml │ │ ├── test_get_post_info.yaml │ │ ├── test_get_posting_card_status.yaml │ │ ├── test_get_tracking_code_events.yaml │ │ ├── test_get_tracking_code_events_without_city_field.yaml │ │ ├── test_get_tracking_code_object_not_found_by_correios.yaml │ │ ├── test_get_tracking_code_with_no_verification_digitevents.yaml │ │ ├── test_get_tracking_codes_events.yaml │ │ ├── test_get_user.yaml │ │ ├── test_request_tracking_codes.yaml │ │ └── test_verify_service_availability.yaml │ └── test_logo.jpg ├── test_address_models.py ├── test_builders.py ├── test_client.py ├── test_pdf_renderer.py ├── test_posting_models.py ├── test_update_wsdl.py ├── test_user_models.py ├── test_utils.py ├── test_vcr.py ├── test_xml_utils.py └── vcr.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt 2 | graft correios/data 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/README.rst -------------------------------------------------------------------------------- /correios/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/__init__.py -------------------------------------------------------------------------------- /correios/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/client.py -------------------------------------------------------------------------------- /correios/data/carrier_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/carrier_logo.png -------------------------------------------------------------------------------- /correios/data/carrier_logo_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/carrier_logo_bw.png -------------------------------------------------------------------------------- /correios/data/default_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/default_logo.png -------------------------------------------------------------------------------- /correios/data/economic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/economic.gif -------------------------------------------------------------------------------- /correios/data/economic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/economic.png -------------------------------------------------------------------------------- /correios/data/express.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/express.gif -------------------------------------------------------------------------------- /correios/data/express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/express.png -------------------------------------------------------------------------------- /correios/data/posting_list_schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/posting_list_schema.xsd -------------------------------------------------------------------------------- /correios/data/premium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/premium.gif -------------------------------------------------------------------------------- /correios/data/premium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/premium.png -------------------------------------------------------------------------------- /correios/data/standard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/standard.gif -------------------------------------------------------------------------------- /correios/data/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/standard.png -------------------------------------------------------------------------------- /correios/data/wsdls/AtendeCliente-production.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/wsdls/AtendeCliente-production.wsdl -------------------------------------------------------------------------------- /correios/data/wsdls/AtendeCliente-test.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/wsdls/AtendeCliente-test.wsdl -------------------------------------------------------------------------------- /correios/data/wsdls/CalcPrecoPrazo.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/wsdls/CalcPrecoPrazo.asmx -------------------------------------------------------------------------------- /correios/data/wsdls/Rastro.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/wsdls/Rastro.wsdl -------------------------------------------------------------------------------- /correios/data/wsdls/Rastro_schema1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/data/wsdls/Rastro_schema1.xsd -------------------------------------------------------------------------------- /correios/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/exceptions.py -------------------------------------------------------------------------------- /correios/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/models/__init__.py -------------------------------------------------------------------------------- /correios/models/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/models/address.py -------------------------------------------------------------------------------- /correios/models/builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/models/builders.py -------------------------------------------------------------------------------- /correios/models/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/models/data.py -------------------------------------------------------------------------------- /correios/models/posting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/models/posting.py -------------------------------------------------------------------------------- /correios/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/models/user.py -------------------------------------------------------------------------------- /correios/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/renderers/__init__.py -------------------------------------------------------------------------------- /correios/renderers/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/renderers/pdf.py -------------------------------------------------------------------------------- /correios/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/serializers.py -------------------------------------------------------------------------------- /correios/soap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/soap.py -------------------------------------------------------------------------------- /correios/update_wsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/update_wsdl.py -------------------------------------------------------------------------------- /correios/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/utils.py -------------------------------------------------------------------------------- /correios/xml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/correios/xml_utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/docs/make.bat -------------------------------------------------------------------------------- /documentation/EVENTOS_SMS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/EVENTOS_SMS.pdf -------------------------------------------------------------------------------- /documentation/Guia Tecnico - Embalagens RPC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/Guia Tecnico - Embalagens RPC.pdf -------------------------------------------------------------------------------- /documentation/Guia_Tecnico_CepNet_e_2D_Triagem_Enderecamento_FAC_SIMPLES_11_04_16-revisado-Final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/Guia_Tecnico_CepNet_e_2D_Triagem_Enderecamento_FAC_SIMPLES_11_04_16-revisado-Final.pdf -------------------------------------------------------------------------------- /documentation/LayoutEtiqueta2D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/LayoutEtiqueta2D.pdf -------------------------------------------------------------------------------- /documentation/Manual-de-Implementacao-do-Calculo-Remoto-de-Precos-e-Prazos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/Manual-de-Implementacao-do-Calculo-Remoto-de-Precos-e-Prazos.pdf -------------------------------------------------------------------------------- /documentation/Manual_do_Usuario_SigepWeb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/Manual_do_Usuario_SigepWeb.pdf -------------------------------------------------------------------------------- /documentation/Rastreamento-de-Objetos-SROXML_28fev14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/Rastreamento-de-Objetos-SROXML_28fev14.pdf -------------------------------------------------------------------------------- /documentation/SCPP_manual_implementacao_calculo_remoto_de_precos_e_prazos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/SCPP_manual_implementacao_calculo_remoto_de_precos_e_prazos.pdf -------------------------------------------------------------------------------- /documentation/gen_data_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/gen_data_module.py -------------------------------------------------------------------------------- /documentation/logo_correios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/logo_correios.svg -------------------------------------------------------------------------------- /documentation/logo_correios_bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/logo_correios_bw.svg -------------------------------------------------------------------------------- /documentation/logo_correios_vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/logo_correios_vertical.svg -------------------------------------------------------------------------------- /documentation/logo_shipping_categories.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/logo_shipping_categories.svg -------------------------------------------------------------------------------- /documentation/manual_rastreamentoobjetosws.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/manual_rastreamentoobjetosws.pdf -------------------------------------------------------------------------------- /documentation/modelo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/modelo.xml -------------------------------------------------------------------------------- /documentation/pesquisa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/pesquisa.html -------------------------------------------------------------------------------- /documentation/process_correios_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/process_correios_status.py -------------------------------------------------------------------------------- /documentation/status_correios_from_manual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/status_correios_from_manual.csv -------------------------------------------------------------------------------- /documentation/status_correios_from_site.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/status_correios_from_site.csv -------------------------------------------------------------------------------- /documentation/v1-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/v1-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf -------------------------------------------------------------------------------- /documentation/v2-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/v2-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf -------------------------------------------------------------------------------- /documentation/v3-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/v3-Manual_de_Implementacao_do_Web_Service_SIGEPWEB_e_Logistica_Reversa.pdf -------------------------------------------------------------------------------- /documentation/v4-Manual_de_Implementacao_do_Web_Service_SIGEP_WEB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/v4-Manual_de_Implementacao_do_Web_Service_SIGEP_WEB.pdf -------------------------------------------------------------------------------- /documentation/v5-Manual_de_Implementacao_do_Web_Service_SIGEP_WEB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/documentation/v5-Manual_de_Implementacao_do_Web_Service_SIGEP_WEB.pdf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements-test.txt 2 | bumpversion 3 | isort 4 | flake8 5 | mypy 6 | -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/samples/__init__.py -------------------------------------------------------------------------------- /samples/request_tracking_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/samples/request_tracking_codes.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_basic_client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_basic_client.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_basic_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_basic_update.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_delivery_time.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_delivery_time.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_delivery_time_service_not_allowed_for_path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_delivery_time_service_not_allowed_for_path.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_freight_with_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_freight_with_error.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_freight_with_error_code_10_restricted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_freight_with_error_code_10_restricted.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_freight_with_error_code_11_restricted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_freight_with_error_code_11_restricted.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_freight_with_error_code_9_restricted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_freight_with_error_code_9_restricted.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_freights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_freights.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_calculate_freights_with_extra_services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_calculate_freights_with_extra_services.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_client_authentication_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_client_authentication_error.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_client_canceled_posting_card_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_client_canceled_posting_card_error.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_client_nonexistent_posting_card_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_client_nonexistent_posting_card_error.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_close_posting_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_close_posting_list.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_find_zip_code.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_find_zip_code.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_generate_verification_digit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_generate_verification_digit.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_post_info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_post_info.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_posting_card_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_posting_card_status.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_tracking_code_events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_tracking_code_events.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_tracking_code_events_without_city_field.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_tracking_code_events_without_city_field.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_tracking_code_object_not_found_by_correios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_tracking_code_object_not_found_by_correios.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_tracking_code_with_no_verification_digitevents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_tracking_code_with_no_verification_digitevents.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_tracking_codes_events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_tracking_codes_events.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_get_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_get_user.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_request_tracking_codes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_request_tracking_codes.yaml -------------------------------------------------------------------------------- /tests/fixtures/cassettes/test_verify_service_availability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/cassettes/test_verify_service_availability.yaml -------------------------------------------------------------------------------- /tests/fixtures/test_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/fixtures/test_logo.jpg -------------------------------------------------------------------------------- /tests/test_address_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_address_models.py -------------------------------------------------------------------------------- /tests/test_builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_builders.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_pdf_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_pdf_renderer.py -------------------------------------------------------------------------------- /tests/test_posting_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_posting_models.py -------------------------------------------------------------------------------- /tests/test_update_wsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_update_wsdl.py -------------------------------------------------------------------------------- /tests/test_user_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_user_models.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_vcr.py -------------------------------------------------------------------------------- /tests/test_xml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/test_xml_utils.py -------------------------------------------------------------------------------- /tests/vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tests/vcr.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olist/correios/HEAD/tox.ini --------------------------------------------------------------------------------