get.features()

Get all Rasgo Features available

Parameters

N/A

Return Object

List of Rasgo Features

Sample Usage

# 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.dataType

Best Practices / Tips

Last updated

Was this helpful?