Skip to content

Instantly share code, notes, and snippets.

@dchaplinsky
Last active December 3, 2021 00:06
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save dchaplinsky/ce215a4c5b7ccef24c35 to your computer and use it in GitHub Desktop.
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.
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)
@dchaplinsky
Copy link
Author

Check the updated docs and new API here: https://declarations.com.ua/api/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment