mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-30 18:26:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			249 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from datahub.sdk import DataHubClient, DatasetUrn
 | |
| 
 | |
| client = DataHubClient.from_env()
 | |
| 
 | |
| dataset = client.entities.get(
 | |
|     DatasetUrn(platform="hive", name="fct_users_created", env="PROD")
 | |
| )
 | |
| 
 | |
| # Print the dataset description
 | |
| print(dataset.description)
 | 
