Skip to main content

Collection of tasks for I/O.

Project description

Build status Lint status Documentation Coverage Code style Version License

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

io_collection-0.10.1.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

io_collection-0.10.1-py3-none-any.whl (16.4 kB view details)

Uploaded Python 3

File details

Details for the file io_collection-0.10.1.tar.gz.

File metadata

  • Download URL: io_collection-0.10.1.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for io_collection-0.10.1.tar.gz
Algorithm Hash digest
SHA256 b3f3d21d4bb6614751373d858a822171e3f7703da80d83e6dad3fb2eebdd1f5a
MD5 a290b234bbb1834232843b4c7f6a4f05
BLAKE2b-256 de58598a53a091f3f0becfb188809f37eb8ce7707a112cf2afa0985939ad421e

See more details on using hashes here.

File details

Details for the file io_collection-0.10.1-py3-none-any.whl.

File metadata

File hashes

Hashes for io_collection-0.10.1-py3-none-any.whl
Algorithm Hash digest
SHA256 07d233058cbf26a017305ab4bd42d1329dc8cbd126603701d7d1325ea26c772b
MD5 5988bd6c4556fad511ed8c92df793ad9
BLAKE2b-256 00934a2c5df5befab26ae8350c1ab34620cf734965476ca9d8f1b2e527df910f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page