v0.3.0
v0.3.0 introduces a new SDK feature called batch
, allowing you to build a batch of functions to be dispatched and executed concurrently.
@dispatch.function
def funcA(): ...
@dispatch.function
def funcB(someargs): ...
batch = dispatch.batch()
batch.add(funcA)
batch.add(funcB, someargs)
batch.dispatch()
Take a look at the documentation to learn about the different SDK features: Workflow as code!
Happy building!
What's Changed
New features
- Batch submit by @chriso in #127
- Improve UX around verification keys by @chriso in #120
- Mock server by @chriso in #126
Documentation
- Add section describing serialization and its quirks by @chriso in #118
- Update README by @chriso in #125
Other changes
Full Changelog: v0.2.1...v0.3.0