mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-05-03 16:09:37 -05:00
d63b66a837
* first pass at moving controllers around * feat: concurrency limits for strategy CANCEL_IN_PROGRESS * fix: linting * chore: bump python sdk version
13 lines
184 B
Python
13 lines
184 B
Python
from hatchet_sdk import new_client
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
client = new_client()
|
|
|
|
client.event.push(
|
|
"concurrency-test",
|
|
{
|
|
"test": "test"
|
|
}
|
|
) |