migore / viacepex

Viacepex is a simple wrapper around Viacep API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Viacepex

Viacepex is a simple wrapper around viacep API.

Installation

The package can be installed as:

  1. Add viacepex to your list of dependencies in mix.exs:
def deps do
[
 {:viacepex, "~> 0.0.2"}
]
end
  1. (Before elixir 1.4 only) Ensure viacepex is started before your application:
def application do
[applications: [:viacepex]]
end

Quickstart

iex> Viacepex.get! "01001000"
#%{bairro: "Sé", cep: "01001-000", complemento: "lado ímpar", gia: "1004",
#  ibge: "3550308", localidade: "São Paulo", logradouro: "Praça da Sé",
#  uf: "SP", unidade: ""}

About

Viacepex is a simple wrapper around Viacep API.

License:MIT License


Languages

Language:Elixir 100.0%