get.collection()
Get a Rasgo Collection by id
Last updated
Get a Rasgo Collection by id
id:integer:ID of a Rasgo Collection
Rasgo Collection
# Connect to rasgo
api_key = '<your api key>'
rasgo = pyrasgo.connect(api_key)
# Return object
collection = rasgo.get.collection(id=#)
# Explore returned object
collection.id
collection.name
collection.sourceTableTIP: 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