mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-02-20 15:19:08 -06:00
* (wip) python SDK * feat: python client, initial version finished * fix: add curl to migration dockerfile * add insecure option for grpc * create docs and publishing workflow * delete old hatchet folder
10 lines
129 B
Python
10 lines
129 B
Python
from hatchet import new_client
|
|
|
|
client = new_client()
|
|
|
|
client.event.push(
|
|
"user:create",
|
|
{
|
|
"test": "test"
|
|
}
|
|
) |