functualize-tasks-local
Status: Published — Independently installable from PyPI.
Local state-backed task storage plugin for functualize. Provides a TaskProvider
implementation that persists tasks as JSON blobs in the active StateBackend,
using keys prefixed with tasks:. Zero external dependencies beyond the
functualize workspace packages — if you have a state backend registered, this
plugin gives you a fully functional task queue with no additional infrastructure.
Installation
pip install functualize-tasks-local
Quick Start
from functualize_state import InMemoryState
from functualize_tasks import TaskStatus
from functualize_tasks_local import LocalTaskProvider
# Create a provider backed by an in-memory state store
backend = InMemoryState()
provider = LocalTaskProvider(backend=backend)
# Add a task and retrieve it
task_id = provider.add("Deploy staging server")
tasks = provider.list(status=TaskStatus.PENDING)
print(tasks[0].title) # "Deploy staging server"
# Update status and clean up
provider.update(task_id, status=TaskStatus.DONE)
provider.delete(task_id)
Features
- State-backed persistence — delegates all storage to the active
StateBackend, so tasks survive restarts when using a durable backend like SQLite - Automatic plugin registration — registers via the
functualize.tasks_providersentry point with name"local", no manual wiring required - Full CRUD operations — create, list, update, delete, and link tasks with filtering by status or title substring
- Zero external dependencies — only depends on
functualize-tasksandfunctualize-statefrom the workspace - JSON serialization — each task stored as a compact JSON blob under
tasks:{task_id}, easily inspectable for debugging
API Reference
Public classes exported by this plugin:
LocalTaskProvider—TaskProviderimplementation that stores tasks in aStateBackendwithtasks:key prefix. Methods:add(),list(),update(),delete(),link()LocalTasksPlugin— Plugin entry point that resolves the activeStateBackendfrom DI at boot and registers aLocalTaskProvideras theTaskProviderimplementation
Development
Run plugin tests:
uv run pytest plugins/functualize-tasks-local/tests/ -v
Release files for functualize-tasks-local 0.2.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| functualize_tasks_local-0.2.1.tar.gz | 6.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| functualize_tasks_local-0.2.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 12.7 kB
Release files / functualize_tasks_local-0.2.1.tar.gz
| Download URL | functualize_tasks_local-0.2.1.tar.gz |
|---|---|
| Size | 6.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e376a5d657b08407e24154c470637b3424050a175757f0c54bfdfa40ec2d7934
|
|
BLAKE2b-256 checksum How to use checksums |
307b2fdec1a95ce484d2a50d4f5d2a481dce2746b0c99e448d9efc7767660cda
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.
Transparency logRelease files / functualize_tasks_local-0.2.1-py3-none-any.whl
| Download URL | functualize_tasks_local-0.2.1-py3-none-any.whl |
|---|---|
| Size | 5.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
0cd1f06f922e7a9c7e898073be8fad4f4d0b31153b4e46c99c4d499990993594
|
|
BLAKE2b-256 checksum How to use checksums |
6211a00f95339417166839469eb0162ac822c85df86f15b6aedf304df38b9e65
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.
Transparency log