mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
9 lines
230 B
Python
9 lines
230 B
Python
from datahub.sdk import DataHubClient
|
|
|
|
client = DataHubClient(server="<your_server>", token="<your_token>")
|
|
|
|
# Search for entities with "sales" in the metadata
|
|
results = client.search.get_urns(query="sales")
|
|
|
|
print(list(results))
|