Skip to Content
Lynkr is now in Open Beta 🎉
Python SdkQuickstart

Quickstart

Install the SDK

Set up your Python project, ideally with a virtual environment, and then:

Use the pip install lynkr command to install lynkr librar

Initialize the Client

First make sure you have .env file with your API key and necessary credentials

LYNKR_API_KEY=your_api_key RESEND_API_KEY=your_api_key

Then, initialize the client with your API key:

from lynkr import LynkrClient API_KEY = api_key=os.getenv("LYNKR_API_KEY", "") lynkr_client = LynkrClient(api_key=API_KEY)

Add your service credentials - (Optional)

Before you can start using services if they require authentication you need to add them to the client or you can get them from your clients

RESEND_API_KEY=os.environ.get("RESEND_API_KEY", "") lynkr_client.add_key( "resend", "x-api-key", RESEND_API_KEY )

Next Steps

Now that your client is active and authenticated, you are ready to be Lynkd

  • Learn more about how to make calls
  • Retrieve ready to use tools
Last updated on