Skip to content

Commit

Permalink
uk: fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
yolile committed May 30, 2022
1 parent c65856e commit 5ac8b9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def start_requests(self):
url = f'{self.url_prefix}Notices/OCDS/Search?order=desc&size=100'
yield scrapy.Request(url, meta={'file_name': 'page-1.json'}, callback=self.parse_list)

def build_urls(self, response):
def parse_page(self, response):
if self.is_http_success(response):
for result in response.json()['results']:
for release in result['releases']:
Expand Down

0 comments on commit 5ac8b9e

Please sign in to comment.