BrazilCEP: Query CEP Easily™ ============================ .. image:: https://static.pepy.tech/badge/brazilcep/month :target: https://pepy.tech/project/brazilcep/ :alt: BrazilCEP Downloads Per Month Badge .. image:: https://img.shields.io/pypi/l/brazilcep.svg :target: https://pypi.org/project/brazilcep/ :alt: License Badge .. image:: https://img.shields.io/pypi/v/brazilcep.svg :target: https://pypi.org/project/brazilcep/ :alt: BrazilCEP Version Badge .. image:: https://img.shields.io/pypi/pyversions/brazilcep.svg :target: https://pypi.org/project/brazilcep/ :alt: Python Version Support Badge **BrazilCEP** is a minimalist and easy-to-use Python library designed to query CEP (Postal Address Code) data. --- Quick Example ------------- Here’s a simple usage example:: >>> import brazilcep >>> brazilcep.get_address_from_cep('37503-130') { 'district': 'rua abc', 'cep': '37503130', 'city': 'city ABC', 'street': 'str', 'uf': 'str', 'complement': 'str', } Its goal is to provide a unified query interface for multiple search services, simplifying the integration of Python applications with these services. Starting from version 7.0.0, **BrazilCEP** introduces support for asynchronous operations. Supported CEP APIs ------------------ Currently, BrazilCEP supports the following CEP APIs: - `ViaCEP `_ - `ApiCEP (WideNet) `_ - `OpenCEP `_ What is CEP? ------------ **CEP** or **Código de Endereçamento Postal** (*Postal Address Code*) is a system of numeric codes created, maintained, and organized by *Correios do Brasil* to streamline address organization and the delivery of letters and parcels. Documentation Overview ---------------------- User Guide ~~~~~~~~~~ This section provides background information and step-by-step instructions for using BrazilCEP. .. toctree:: :maxdepth: 2 user/install user/quickstart API Documentation ~~~~~~~~~~~~~~~~~ For details on specific functions, classes, or methods, refer to this section. .. toctree:: :maxdepth: 2 api Contributor Guide ~~~~~~~~~~~~~~~~~ If you want to contribute to the project, this section provides all the necessary guidelines. .. toctree:: :maxdepth: 3 contributing Release History ~~~~~~~~~~~~~~~ For a detailed changelog of the project, refer to this section. .. toctree:: :maxdepth: 1 changes