Collection of tasks for I/O.
Project description
Collection of tasks for I/O. Designed to be used both in Prefect workflows and as modular, useful pieces of code.
Installation
The collection can be installed using:
pip install io-collection
We recommend using Poetry to manage and install dependencies. To install into your Poetry project, use:
poetry add io-collection
Usage
Prefect workflows
All tasks in this collection are wrapped in a Prefect @task
decorator, and can be used directly in a Prefect @flow
.
Running tasks within a Prefect flow enables you to take advantage of features such as automatically retrying failed tasks, monitoring workflow states, running tasks concurrently, deploying and scheduling flows, and more.
from prefect import flow
from io_collection.<module_name> import <task_name>
@flow
def run_flow():
<task_name>()
if __name__ == "__main__":
run_flow()
See cell-abm-pipeline for examples of using tasks from different collections to build a pipeline for simulating and analyzing agent-based model data.
Individual tasks
Not all use cases require a full workflow.
Tasks in this collection can be used without the Prefect @task
decorator by simply importing directly from the module:
from io_collection.<module_name>.<task_name> import <task_name>
def main():
<task_name>()
if __name__ == "__main__":
main()
or using the .fn()
method:
from io_collection.<module_name> import <task_name>
def main():
<task_name>.fn()
if __name__ == "__main__":
main()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file io_collection-0.9.0.tar.gz
.
File metadata
- Download URL: io_collection-0.9.0.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd7bfd96db39499436b98d05fe9824260c7997047501c7e5920e639761b36df7 |
|
MD5 | d5e216e9d0c835f548224bd80dc651f3 |
|
BLAKE2b-256 | 454a867aedc62b279589b2569920ea42c8900a67d965126cc77e2c8c1b1527d3 |
File details
Details for the file io_collection-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: io_collection-0.9.0-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ee965af86561a38dd3723e3240c8275ececce737302aa88ce78bf3ff07486c0 |
|
MD5 | e586868085ca927a66639c35f6a7c9f1 |
|
BLAKE2b-256 | 19798ed0e812aed1e762c55a0571a71b80fbe9f8a48d8c4f3a1f17c29ae2fff5 |