get.features()
Get all Rasgo Features available
Last updated
Get all Rasgo Features available
N/A
List of Rasgo Features
# Connect to rasgo
api_key = '<your api key>'
rasgo = pyrasgo.connect(api_key)
# Return object
features = rasgo.get.features()
# Explore returned object
for feature in features:
feature.id
feature.name
feature.dataTypeTIP: 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