sdk-python icon indicating copy to clipboard operation
sdk-python copied to clipboard

Temporal Python SDK

Results 119 sdk-python issues
Sort by recently updated
recently updated
newest added

Python stdlib is unfortunately very lacking when it comes to ways to work with `AsyncIterator`s. Add this to the fact that our API doesn't support a LIMIT clause, but only...

enhancement

### Describe the solution you'd like On invalid workflow input, if a bad value is called, the task fails with a runtime error. This should be a better error type...

enhancement

A Python worker reloads the workflow definition from disk every time a new workflow run is started, i.e. without requiring the worker process to be shutdown and restarted. So for...

bug

Python currently applies jobs in a few different batches: https://github.com/temporalio/sdk-python/blob/main/temporalio/worker/_workflow_instance.py#L325 In TS, we changed this to only do one batch, and then run the event loop: https://github.com/temporalio/sdk-typescript/pull/1488 This model is...

enhancement

### Describe the solution you'd like May be similar to #238 but maybe not (that's more about the sandbox). It seems when trying to debug via replayer in PyCharm, some...

enhancement

### What are you really trying to do? pip install temporalio ### Describe the bug ![image](https://github.com/user-attachments/assets/820ca4e3-dddc-4744-886a-e55fde0bf3d4) ![image](https://github.com/user-attachments/assets/194ecca3-efe3-4470-a2f4-ca03f5709e23) ![image](https://github.com/user-attachments/assets/c29f9d50-d1a0-45a1-8274-3f066481fe6c) When i installed the temporalio, these errors is comes up, i also...

bug

This is a draft PR, investigating where we can / should set/unset the running loop. Currently it's set/unset on entry/exit of `_run_once()`. Is the purpose of that to prevent any...

### Is your feature request related to a problem? Please describe. There is a missing feature in Python SDK for workflow reset ### Describe the solution you'd like I have...

enhancement