Last active
December 3, 2021 00:06
-
-
Save dchaplinsky/ce215a4c5b7ccef24c35 to your computer and use it in GitHub Desktop.
Simple example of how to export all assets declarations from declarations.com.ua website.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
from time import sleep | |
data = [] | |
print("Fetching page #%s" % 1) | |
r = requests.get("http://declarations.com.ua/search?format=opendata").json() | |
data += r["results"]["object_list"] | |
for page in range(2, r["results"]["paginator"]["num_pages"] + 1): | |
sleep(0.5) | |
print("Fetching page #%s" % page) | |
subr = requests.get( | |
"http://declarations.com.ua/search?format=opendata&page=%s" % page).json() | |
data += subr["results"]["object_list"] | |
print("Declarations exported %s" % len(data)) | |
with open("feed.json", "w") as fp: | |
json.dump(data, fp) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check the updated docs and new API here: https://declarations.com.ua/api/