Install SDKs
Set up your development environment for Zep
This guide shows how to obtain an API key, install an SDK, and initialize the Zep client. For end-to-end setup, read the quick start guide.
Obtain an API Key
Create a free Zep account and you will be prompted to create an API key.
Install the SDK
Python
TypeScript
Go
Set up a Python virtual environment, then install the SDK:
Initialize the Client
Add your API key to a .env file:
Load the environment variable into your terminal session:
Then, initialize the client with your API key:
The Python SDK Supports Async Use
The Python SDK supports both synchronous and asynchronous usage. For async operations, import AsyncZep instead of Zep and remember to await client calls in your async code.