> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mantlebio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# FAQ

<Accordion
  title="I am tired of authenticating each time
I create a new Mantle SDK client. How do I avoid this?"
>
  When you instantiate a new Mantle SDK client:

  ```python theme={"system"}
  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:

  ```bash theme={"system"}
  export MANTLE_USER=your_username
  export MANTLE_PASSWORD=your_password
  ```
</Accordion>

<Accordion title="Where can I find more information on using the Mantle SDK?">
  Please see the [full SDK documentation](https://sdk.mantlebio.com/).
</Accordion>
