get.data_source()

Get a Rasgo DataSource object by id

Parameters

id:integer:ID of a Rasgo DataSource object

Return Object

List of Rasgo DataSources

Sample Usage

# Connect to rasgo
api_key = '<your api key>'
rasgo = pyrasgo.connect(api_key) 

# Return object
data_source = rasgo.get.data_source(#)

# Explore returned object
data_source.id
data_source.name
data_source.category

Best Practices / Tips

Last updated

Was this helpful?