Links

Connecting to PyRasgo

Once you have PyRasgo installed in your python environment, you'll need to connect to Rasgo to access the main PyRasgo methods. Doing so is relatively simple:
import pyrasgo
api_key = "..."
rasgo = pyrasgo.connect(api_key)
Connected with your API key, you can now access your datasets with rasgo.get.datasets() or make other core PyRasgo calls.