Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use ocid insted of id #563

Merged
merged 3 commits into from
Nov 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 4 additions & 19 deletions kingfisher_scrapy/spiders/spain_zaragoza.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,38 +10,23 @@ class SpainZaragoza(SimpleSpider):
"""
Domain
Ayuntamiento de Zaragoza
Spider arguments
from_date
Download only data from this date onward (YYYY-MM-DDTHH:mm:ss format).
If ``until_date`` is provided, defaults to '2000-01-01T00:00:00'.
until_date
Download only data until this date (YYYY-MM-DDTHH:mm:ss format).
If ``from_date`` is provided, defaults to today.
Swagger API documentation
https://www.zaragoza.es/docs-api_sede/
"""
name = 'spain_zaragoza'
data_type = 'release_list'
date_format = 'datetime'
default_from_date = '2000-01-01T00:00:00'
data_type = 'release_package'
url = 'https://www.zaragoza.es/sede/servicio/contratacion-publica/ocds/contracting-process/'

def start_requests(self):
# row parameter setting to 100000 to get all releases
url = self.url + '?rf=html&rows=100000'

# check date parameters and set "yyyy-MM-dd'T'HH:mm:ss'Z'" format
if self.from_date and self.until_date:
# `before` and `after` query string parameters behave opposite in API
after = self.until_date.strftime("%Y-%m-%dT%H:%M:%SZ")
before = self.from_date.strftime("%Y-%m-%dT%H:%M:%SZ")
url = f'{url}&before={before}&after={after}'
url = f'{self.url}?rf=html&rows=100000'

yield scrapy.Request(url, meta={'file_name': 'list.json'}, callback=self.parse_list)

@handle_http_error
def parse_list(self, response):
ids = json.loads(response.text)
for contracting_process_id in ids:
url = self.url + contracting_process_id['id']
ocid = contracting_process_id['ocid']
url = f'{self.url}{ocid}'
yield self.build_request(url, formatter=components(-1))