A Ruby gem to get planning applications data from UK council websites.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

uk_planning_scraper.rb 300 B

6 years ago
6 years ago
12345678910111213
  1. require "uk_planning_scraper/version"
  2. require "uk_planning_scraper/authority"
  3. require 'uk_planning_scraper/idox'
  4. require 'uk_planning_scraper/northgate'
  5. require 'logger'
  6. module UKPlanningScraper
  7. class SystemNotSupported < StandardError
  8. end
  9. class AuthorityNotFound < StandardError
  10. end
  11. end