Skip to content

SmartDataInnovationLab/dcat-ap-hub

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DCAT-AP Hub

This library provides easy data handling based on metadata in DCAT-AP format.

How To Install

pip install git+https://github.com/maxbrzr/dcat-ap-hub.git

With Custom Parsing

from dcat_ap_hub import download_data, apply_parsing

json_ld_metadata = "http://localhost:8081/datasets/uci-har.jsonld"
metadata = download_data(json_ld_metadata)
df = apply_parsing(metadata)

With Default Pandas Parsing

from dcat_ap_hub import download_data, parse_with_pandas

json_ld_metadata = "http://localhost:8081/datasets/uci-har.jsonld"
metadata = download_data(json_ld_metadata)
df = parse_with_pandas(metadata)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 69.5%
  • Jupyter Notebook 30.5%