Client
In this section we will cover how to implement and use some of the building blocks we covered in the Basics section and will assume the reader is familiar. We recommend starting there before diving in here.
Key Concepts
Installation
Evrim client can be installed through pip. Please see PyPi for latest version updates.
pip install evrim
Authentication
For now, Evrim uses a single API Token for user authentication, passed into the Evrim Client upon initialization.
from evrim import Evrim
client = Evrim(api_token="token-1234")
Once the client is authenticated, we can build our first Template.
Last updated