Files
hatchet/python-client/examples/simple/event_test.py
abelanger5 0c94f0d933 feat: python client (#109)
* (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
2024-01-20 09:18:25 -05:00

10 lines
129 B
Python

from hatchet import new_client
client = new_client()
client.event.push(
"user:create",
{
"test": "test"
}
)