Skip to content

Files

Latest commit

cd7435a Β· Feb 12, 2025

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 6, 2024
Apr 24, 2024
Oct 4, 2024
Apr 24, 2024
Apr 24, 2024
Dec 21, 2024
Oct 4, 2024
Oct 4, 2024
Oct 4, 2024
Apr 24, 2024
Nov 13, 2024
Dec 14, 2024
Feb 5, 2025
Oct 14, 2024
Oct 4, 2024
May 6, 2024
Feb 5, 2025
May 26, 2024
Aug 22, 2024
May 26, 2024
May 26, 2024
May 26, 2024
May 6, 2024
May 26, 2024
May 26, 2024
May 6, 2024
Oct 4, 2024
Nov 23, 2024
Oct 14, 2024
Oct 4, 2024
Oct 22, 2024
Feb 12, 2025
Oct 4, 2024
Feb 12, 2025
Jun 30, 2024
Oct 4, 2024
May 13, 2024
Apr 24, 2024
Oct 14, 2024
Sep 19, 2024
Jun 30, 2024
Sep 19, 2024
May 6, 2024
Jun 11, 2024
Sep 10, 2024
Oct 14, 2024
Oct 17, 2024
Oct 4, 2024
Aug 22, 2024
Feb 10, 2025
Jul 23, 2024
Feb 23, 2024
Aug 2, 2024
Oct 4, 2024
Apr 24, 2024
Apr 18, 2024
Oct 14, 2024
Oct 4, 2024
Jun 30, 2023

Flyte Examples

This directory contains a series of example projects that demonstrate how to use Flyte. The basic structure of the examples is as follows:

example_project
β”œβ”€β”€ README.md  # High-level description of the example project
β”œβ”€β”€ Dockerfile  # Dockerfile for packaging up the project requirements
β”œβ”€β”€ requirements.in  # Minimal python requirements for the project
β”œβ”€β”€ requirements.txt  # Compiled python requirements using pip-compile
└── example_project  # Python package containing examples with the same name as the project
    β”œβ”€β”€ __init__.py
    β”œβ”€β”€ example_01.py
    β”œβ”€β”€ example_02.py
    β”œβ”€β”€ ...
    └── example_n.py

These example projects are meant to be stand-alone projects that can be built and run by themselves.