I want to create datahub custom datasets and custo...
# all-things-deployment
b
I want to create datahub custom datasets and custom charts using python. Is there any way??
b
you have 2 ways: 1. use the openAPI method https://github.com/datahub-project/datahub/blob/master/docs/api/openapi/openapi-usage-guide.md but you need to figure out how to structure the request 2. use the python library to create and emit to GMS https://github.com/datahub-project/datahub/blob/master/metadata-ingestion/examples/library/dataset_schema.py this sample file will create a dataset schema and emit to GMS. (There isnt a example for chart, but it is similar enough to dataset i think) ok, (1) is not really python.
thanks ewe 1
b
Thanks!!