Skip to content

butzhang/clerk-sdk-python

 
 

Repository files navigation

Unofficial Clerk.dev Python SDK

What is Clerk.dev?

See https://clerk.dev

Installation

pip install clerk-sdk-python

Usage

import asyncio

from clerk import Client


async def main():
    async with Client("my-token") as client:
        users = await client.users.list()
        for user in users:
            print(f"Got user {user.id} -> {user.first_name} {user.last_name}")


asyncio.run(main())

About

Unofficial python SDK for clerk.dev

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%