mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-04 04:39:10 +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))
 |