Created
August 19, 2020 14:02
-
-
Save stuartlynn/cc0bc633fe7398a25ac79e3eb9ab230d to your computer and use it in GitHub Desktop.
Get Department code
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 pandas as pd | |
import json | |
import requests | |
import math | |
from pathlib import Path | |
from tqdm import tqdm | |
import pprint | |
def get_portal_list(): | |
return requests.get('http://api.us.socrata.com/api/catalog/v1/domains').json()['results'] | |
def get_portal_metadata(portal, per_page=100): | |
inital_request = requests.get(f'https://api.us.socrata.com/api/catalog/v1?domains={portal}&search_context={portal}&limit=1').json() | |
if('error' in inital_request.keys()): | |
raise Exception(f"No data for domain {portal}") | |
result_count = inital_request['resultSetSize'] | |
datasets = [] | |
for page in range(math.ceil(result_count/per_page)): | |
dataet_page = requests.get(f'https://api.us.socrata.com/api/catalog/v1?domains={portal}&search_context={portal}&limit={per_page}&offset={per_page*page}').json() | |
datasets.extend(dataet_page['results']) | |
return datasets | |
def download_all_portals(output_path = "metadata"): | |
output_dir = Path('metadata') | |
output_dir.mkdir(exist_ok=True) | |
for portal in tqdm(get_portal_list()): | |
domain = portal['domain'] | |
try: | |
data = get_portal_metadata(portal['domain']) | |
with open((output_dir / domain).with_suffix('.json'), 'w' ) as f: | |
json.dump(data,f) | |
except Exception as e: | |
print("Issue with gettting ", domain) | |
print(e) | |
def get_department(metadata): | |
depts = [ v['value'] for v in metadata['classification']['domain_metadata'] if v['key']=='Dataset-Information_Agency'] | |
if(len(depts) > 0): | |
return depts[0] | |
else: | |
return None | |
# d = download_all_portals | |
d = get_portal_metadata('data.cityofnewyork.us') | |
dcp = [ meta for meta in d if get_department(meta) == 'Department of City Planning (DCP)'] | |
pp = pprint.PrettyPrinter(indent=4) | |
pp.print(dcp) | |
# download_all_portals() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment