Skip to main content

Collection of tasks for I/O.

Project description

Build Status Codecov Lint Status Documentation Code style

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.8.0.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

io_collection-0.8.0-py3-none-any.whl (15.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: io_collection-0.8.0.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for io_collection-0.8.0.tar.gz
Algorithm Hash digest
SHA256 27b5f2d79ddffe266666eb9dc3461a14afc32b01f2b3922d7e0d443324d62e0a
MD5 b161f447ea6938e7ed21c27fc8bc4ef7
BLAKE2b-256 d521245aa9c8e3338f13749236f479671640def53ab8810b9652f68eb521550d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for io_collection-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 278cbfeacb93786dbebffed3a5a7651853bfe580291dacf4da5a5382a185688f
MD5 1c3e01913bc92c9cd71525045befd130
BLAKE2b-256 ce1f8a87b14d60ac586776c757627abb10acb195597092f04eff8b272daa265b

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