Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Dependency-less Brasil API lookup gem for brazilian data with an easy-to-use API.
Install the gem and add to the application's Gemfile by executing:
$ bundle add brasilapi
If bundler is not being used to manage dependencies, install the gem by executing:
$ gem install brasilapi
require 'brasilapi'
# get all banks
BrasilAPI::Bank.all
=>
[{"ispb"=>"00000000", "name"=>"BCO DO BRASIL S.A.", "code"=>1, "fullName"=>"Banco do Brasil S.A."},
{"ispb"=>"00000208", "name"=>"BRB - BCO DE BRASILIA S.A.", "code"=>70, "fullName"=>"BRB - BANCO DE BRASILIA S.A."},
...]
# find bank by code
BrasilAPI::Bank.find_by_code(77)
=> {"ispb"=>"00416968", "name"=>"BANCO INTER", "code"=>77, "fullName"=>"Banco Inter S.A."}
# find company by cnpj
BrasilAPI::Company.find_by_cnpj("60316817000103")
=>
{"uf"=>"SP",
"cep"=>"04543907",
"qsa"=>
[{"pais"=>"ESTADOS UNIDOS",
...}
# find address by zip code
BrasilAPI::Address.find_by_zip_code('64001100')
=> {"cep"=>"64001100", "state"=>"PI", "city"=>"Teresina", "neighborhood"=>"Centro", "street"=>"Praça Pedro II", "service"=>"correios"}
# find address with location by zip code
BrasilAPI::Address.find_by_zip_code('80060000', location: true)
=>
{"cep"=>"80060000",
"state"=>"PR",
...
"location"=>{"type"=>"Point", "coordinates"=>{"longitude"=>"-49.2614791", "latitude"=>"-25.427253"}}}
# get state and cities by area code
BrasilAPI::Address.state_and_cities_by_area_code('89')
=>
{"state"=>"PI",
"cities"=>
["MASSÂPE DO PIAUÍ",
...,
"ACAUÃ"
]}
# get all CVM brokers
BrasilAPI::CVM.all
=>
[{"cnpj"=>"76621457000185",
"type"=>"CORRETORAS",
...]
# find bank by code
BrasilAPI::CVM.find_by_cnpj('74014747000135')
=>
{"cnpj"=>"74014747000135",
"type"=>"CORRETORAS",
...}
# get brazilian national holidays by year
BrasilAPI::Holiday.by_year(2024)
=>
[{"date"=>"2024-01-01", "name"=>"Confraternização mundial", "type"=>"national"},
...
{"date"=>"2024-12-25", "name"=>"Natal", "type"=>"national"}]
# get states from ibge
BrasilAPI::IBGE.states
=>
[{"id"=>11,
"sigla"=>"RO"
"nome"=>"Rondônia",
"regiao"=>{"id"=>1, "sigla"=>"N", "nome"=>"Norte"}},
...
{"id"=>53,
"sigla"=>"DF",
"nome"=>"Distrito Federal",
"regiao"=>{"id"=>5, "sigla"=>"CO", "nome"=>"Centro-Oeste"}}]
# find state by abbreviation from ibge
BrasilAPI::IBGE.find_state_by_code('PI')
=>
{"id"=>22,
"sigla"=>"PI",
"nome"=>"Piauí",
"regiao"=>{"id"=>2, "sigla"=>"NE", "nome"=>"Nordeste"}}
# find state by code from ibge
BrasilAPI::IBGE.find_state_by_code(53)
=>
{"id"=>53,
"sigla"=>"DF",
"nome"=>"Distrito Federal",
"regiao"=>{"id"=>5, "sigla"=>"CO", "nome"=>"Centro-Oeste"}}
# get cities by state abbreviation from ibge
BrasilAPI::IBGE.cities_by_state('CE')
=>
[{"nome"=>"ABAIARA", "codigo_ibge"=>"2300101"},
...
{"nome"=>"VÁRZEA ALEGRE", "codigo_ibge"=>"2314003"},
{"nome"=>"VIÇOSA DO CEARÁ", "codigo_ibge"=>"2314102"}]
Bug reports and pull requests are welcome on GitHub at https://github.com/dayvidemerson/brasilapi-rb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Brasilapi project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
FAQs
Unknown package
We found that brasilapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.