Hyejin Yoon d423c9bb59
docs: add search sdk guide (#13682)
Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
2025-06-12 14:14:23 +09:00

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))