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