Skip to content

Rynaro/postmon-clj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

postmon-clj

Clojars Project Build Status

Simple wrapper for PostmonAPI

Installation

Include into your project.clj

[postmon "1.0.0"]

Usage

Getting CEP (zipcode)

(postmon/cep "02013010")

You'll get a map with CEP especification.

{:bairro "Santana", :cidade "São Paulo", :logradouro "Rua Henrique Bernardelli", :estado_info {:area_km2 "248.221,996", :codigo_ibge "35", :nome "São Paulo"}, :cep "02013010", :cidade_info {:area_km2 "1521,11", :codigo_ibge "3550308"}, :estado "SP"}

Note: You don't need to format your CEP, you can use unformatted CEP string.

Getting City Information

(postmon/city-data "SP" "Leme")
{:area_km2 "402,871", :codigo_ibge "3526704"}

Getting UF (state) Information

(postmon/uf-data "SP")
{:area_km2 "248.221,996", :codigo_ibge "35", :nome "São Paulo"}

Getting object package deliver tracking

(postmon/pack-deliver-tracker "ect" "mocked")
  {:codigo "mocked" :service "ect" :historico {:local "AG Liberdade - Sao Paulo/SP" :data "02/01/2020 13:23:03" :situacao "Postado"}}

Note: Postmon only supports ECT (Correios - Empresa Brasileira de Correios e Telegrafos) yet!

Exceptions

In case your query does return nothing from Postmon services, you will get a custom exception from slingshot! There is the exception for handling.

{:type :postmon.request/nothing-returned :message "nothing returned from postmon"}

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Rynaro/postmon-clj.

License

The lib is available as open source under the terms of the MIT License.

About

Clojure wrapper for PostmonAPI

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published