Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vinibrsl/cep.ex

🌎 Brazilian zipcode lookup (CEP) library for Elixir
https://github.com/vinibrsl/cep.ex

Last synced: 2 months ago
JSON representation

🌎 Brazilian zipcode lookup (CEP) library for Elixir

Awesome Lists containing this project

README

        

# cep.ex
> Brazilian zipcode lookup (CEP) library for Elixir.

## Installing

The package can be installed by adding `cepex` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:cepex, "~> 0.1.0"}
]
end

# => Rock on! πŸš€
```

## Usage

```elixir
# With formatted zipcode strings :)
iex> Cepex.lookup("80010-180")
{:ok, %Cepex.Address{
address: "Rua BarΓ£o do Rio Branco",
cep: "80010180",
city: "Curitiba",
complement: "",
http_response: %Cepex.HTTP.Response{},
neighborhood: "Centro",
state: "PR"
}}

# With zipcode integers :)
iex> Cepex.lookup(80010180)
{:ok, %Cepex.Address{
address: "Rua BarΓ£o do Rio Branco",
cep: "80010180",
city: "Curitiba",
complement: "",
http_response: %Cepex.HTTP.Response{},
neighborhood: "Centro",
state: "PR"
}}

# With unformatted zipcode strings :)
iex> Cepex.lookup("80210130")
{:ok, %Cepex.Address{
address: "Rua BarΓ£o do Rio Branco",
cep: "80010180",
city: "Curitiba",
complement: "",
http_response: %Cepex.HTTP.Response{},
neighborhood: "Centro",
state: "PR"
}}
```

## Docs
The full documentation is available on [Hex](https://hexdocs.pm/cepex/api-reference.html).

## Contributing

1. Create a fork (https://github.com/vnbrs/cep.ex/fork)
2. Create a branch (git checkout -b my-new-feature)
3. Make a commit (git commit -am 'Add some feature')
4. Push your code (git push origin my-new-feature)
5. Create a Pull Request
6. Thanks! πŸ€™