Skip to main content
When you instantiate a new Mantle SDK client:
import mantlebio

# Create a new Mantle SDK client
mantle = mantlebio.MantleClient()
you will be prompted to authenticate. To skip this step, you can set the MANTLE_USER and MANTLE_PASSWORD environment variables in your shell:
export MANTLE_USER=your_username
export MANTLE_PASSWORD=your_password
Please see the full SDK documentation.
I