Used fixed scraper implementation

(i.e. with raised receive timeout)
This commit is contained in:
Joerg Reichert 2016-04-03 08:01:08 +02:00
parent 1bbcbdc94e
commit e3a81fea4c

View file

@ -3,6 +3,6 @@ task import_papers: :environment do
require 'open-uri'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
api_key = Rails.application.config_for(:morph)["key"]
uri = URI.parse("https://api.morph.io/ahx/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
uri = URI.parse("https://api.morph.io/jrlover/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
Paper.import_from_json(uri.read)
end