NSAStorage
A Ruby library offering both a CLI and API for scraping NSA Storage self-storage facilities and prices.
Installation
gem install nsastorage
Configuration
require 'nsastorage'
NSAStorage.configure do |config|
config.user_agent = '../..' # ENV['NSASTORAGE_USER_AGENT']
config.timeout = 30 # ENV['NSASTORAGE_TIMEOUT']
config.proxy_url = 'http://user:pass@superproxy.zenrows.com:1337' # ENV['NSASTORAGE_PROXY_URL']
end
Usage
require 'nsastorage'
sitemap = NSAStorage::Facility.sitemap
sitemap.links.each do |link|
url = link.loc
facility = NSAStorage::Facility.fetch(url:)
puts facility.text
facility.prices.each do |price|
puts price.text
end
puts
end
CLI
nsastorage crawl
nsastorage crawl "https://www.nsastorage.com/storage/georgia/storage-units-norcross/1-Western-Hills-Ct-2"