get.data_sources()
Get all Rasgo DataSources available
Parameters
N/A
Return Object
List of Rasgo DataSource
Sample Usage
# Connect to rasgo
api_key = '<your api key>'
rasgo = pyrasgo.connect(api_key)
# Return object
data_sources = rasgo.get.data_sources()
# Explore returned object
for data_source in datasources:
data_source.id
data_source.name
data_source.category
Best Practices / Tips
TIP: data from Rasgo get methods return as python classes with interactive properties and methods. Use your python IDE's inspection tools to explore all operations available on the class, or explore Rasgo Primitives in these docs for options.
Last updated
Was this helpful?