Skip to content

Extensible Python SDK for developing Flyte tasks and workflows. Simple to get started and learn and highly extensible.

License

Notifications You must be signed in to change notification settings

ThomVett/flytekit

This branch is 1875 commits behind flyteorg/flytekit:master.

Folders and files

NameName
Last commit message
Last commit date
Feb 5, 2021
Feb 18, 2021
Feb 20, 2021
Jul 30, 2020
Feb 20, 2021
Jan 26, 2021
Jan 26, 2021
Feb 19, 2021
Jan 29, 2021
Feb 8, 2021
Aug 21, 2019
Aug 21, 2019
Feb 12, 2021
Aug 21, 2019
Feb 19, 2021
Feb 12, 2021
Feb 5, 2021
Feb 13, 2021
Feb 13, 2021
Mar 9, 2020
Sep 14, 2020
Oct 4, 2020
Feb 5, 2021
Aug 13, 2020
Feb 5, 2021
Feb 4, 2021
Feb 5, 2021

Repository files navigation

Flytekit

PyPI version fury.io PyPI download day PyPI download month PyPI format PyPI implementation Codecov PyPI pyversions Docs

Python Library for easily authoring, testing, deploying, and interacting with Flyte tasks, workflows, and launch plans. To understand more about Flyte please refer to,

Installation

Flytekit is the core extensible library to author Flyte workflows and tasks and interact with Flyte Backend services. Flyte plugins can be installed separately.

Base Installation

pip install flytekit==0.16.0b7

Simple getting started

from flytekit import task, workflow

@task(cache=True, cache_version="1", retries=3)
def sum(x: int, y: int) -> int:
    return x + y

@task(cache=True, cache_version="1", retries=3)
def square(x: int) -> int:
    return x*x

@workflow
def my_workflow(x: int, y: int) -> int:
    return sum(x=square(x=x),y=square(y=y))

Learn Flytekit by example using

Contributions and Issues

Please see the contributor guide and file issues against the main Flyte repo.

Plugins:

Refer to plugins/README.md for a list of available plugins. There may be plugins outside of this list, but this list is maintained by the core maintainers.

About

Extensible Python SDK for developing Flyte tasks and workflows. Simple to get started and learn and highly extensible.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.8%
  • Other 1.2%