Skip to content

elCorsaiR/get_address

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GetAddress Ruby Library

A ruby wrapper for getaddress.io API.

Installation

Add this line to your application's Gemfile:

gem 'get_address'

And then execute:

$ bundle

Or install it yourself as:

$ gem install get_address

Usage

GetAddress.get_address postcode, house, options

Arguments

  • postcode (string). The postcode you want to find.
  • house (string, optional). House name/number.
  • options (hash, optional).
    • sort (boolean). Numerically sorts the addresses.

Returns

Returns a list of addresses for a postcode.

Example

GetAddress.api_key = 'getaddress_api_key'

addresses = GetAddress.get_address 'XX2 00X'
addresses.each do |address|
  puts "Line 1: #{address.line1}"
  puts "Line 2: #{address.line2}"
  puts "Line 3: #{address.line3}"
  puts "Town/City: #{address.city}"
  puts "County: #{address.county}"
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/elCorsaiR/get_address.

License

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages