Storages¶
flowtask.storages
¶
Storages.
Storages covering the ways to store the data processed by the tasks and the task/hooks definitions.
FileStore: how Flowtask can store files in the filesystem. TaskStorage: how Flowtask can store the task definitions (yaml, json files).
exceptions
¶
Storage Exceptions.
This module provides the exceptions for the Storages.
StoreError
¶
Bases: Exception
Base Exception Triggered for all Storages.
files
¶
tasks
¶
Task Storage.
Saving Tasks on different Storages (Filesystem, S3 buckets, databases, etc)
DatabaseTaskStorage
¶
FileTaskStorage
¶
Bases: AbstractTaskStorage
Saving Tasks on the Filesystem.
GitTaskStorage
¶
MemoryTaskStorage
¶
Bases: AbstractTaskStorage
Executing Task from Memory.
open_task
async
¶
open_task. Open A Task from Memory.
RowTaskStorage
¶
abstract
¶
filesystem
¶
FileTaskStorage
¶
Bases: AbstractTaskStorage
Saving Tasks on the Filesystem.
memory
¶
MemoryTaskStorage
¶
Bases: AbstractTaskStorage
Executing Task from Memory.
open_task
async
¶
open_task. Open A Task from Memory.