astronomer / astro-sdk

Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.
https://astro-sdk-python.rtfd.io/
Apache License 2.0
329 stars 40 forks source link
airflow apache-airflow bigquery dags data-analysis data-science elt etl gcs pandas postgres python s3 snowflake sql sqlite workflows

astro

workflows made easy

Python versions License Development Status PyPI downloads Contributors Commit activity pre-commit.ci status CI codecov

Astro Python SDK is a Python SDK for rapid development of extract, transform, and load workflows in Apache Airflow. It allows you to express your workflows as a set of data dependencies without having to worry about ordering and tasks. The Astro Python SDK is maintained by Astronomer.

Prerequisites

Install

The Astro Python SDK is available at PyPI. Use the standard Python installation tools.

To install a cloud-agnostic version of the SDK, run:

pip install astro-sdk-python

You can also install dependencies for using the SDK with popular cloud providers:

pip install astro-sdk-python[amazon,google,snowflake,postgres]

Quickstart

  1. Ensure that your Airflow environment is set up correctly by running the following commands:

    export AIRFLOW_HOME=`pwd`
    airflow db init

    Note:

    • AIRFLOW__CORE__ENABLE_XCOM_PICKLING no longer needs to be enabled from astro-sdk-python release 1.2 and above.
    • For airflow version < 2.5 and astro-sdk-python release < 1.3 Users can either use a custom XCom backend AstroCustomXcomBackend with Xcom pickling disabled (or) enable Xcom pickling.
    • For airflow version >= 2.5 and astro-sdk-python release >= 1.3.3 Users can either use Airflow's Xcom backend with Xcom pickling disabled (or) enable Xcom pickling.

    The data format used by pickle is Python-specific. This has the advantage that there are no restrictions imposed by external standards such as JSON or XDR (which can’t represent pointer sharing); however it means that non-Python programs may not be able to reconstruct pickled Python objects.

    Read more: enable_xcom_pickling and pickle:

  2. Create a SQLite database for the example to run with:

    # The sqlite_default connection has different host for MAC vs. Linux
    export SQL_TABLE_NAME=`airflow connections get sqlite_default -o yaml | grep host | awk '{print $2}'`
    sqlite3 "$SQL_TABLE_NAME" "VACUUM;"
  3. Copy the following workflow into a file named calculate_popular_movies.py and add it to the dags directory of your Airflow project:

    https://github.com/astronomer/astro-sdk/blob/d5aa768b2d4bca72ef98f8d533fe3f99624b172f/example_dags/calculate_popular_movies.py#L1-L37

    Alternatively, you can download calculate_popular_movies.py

    curl -O https://raw.githubusercontent.com/astronomer/astro-sdk/main/example_dags/calculate_popular_movies.py
  4. Run the example DAG:

    airflow dags test calculate_popular_movies `date -Iseconds`
  5. Check the result of your DAG by running:

    sqlite3 "$SQL_TABLE_NAME" "select * from top_animation;" ".exit"

    You should see the following output:

    $ sqlite3 "$SQL_TABLE_NAME" "select * from top_animation;" ".exit"
    Toy Story 3 (2010)|8.3
    Inside Out (2015)|8.2
    How to Train Your Dragon (2010)|8.1
    Zootopia (2016)|8.1
    How to Train Your Dragon 2 (2014)|7.9

Supported technologies

FileLocation
local
http
https
gs
gdrive
s3
wasb
wasbs
azure
sftp
ftp
FileType
csv
json
ndjson
parquet
xls
xlsx
Database
postgres
sqlite
delta
bigquery
snowflake
redshift
mssql
duckdb
mysql

Available operations

The following are some key functions available in the SDK:

For a full list of available operators, see the SDK reference documentation.

Documentation

The documentation is a work in progress--we aim to follow the Diátaxis system:

Changelog

The Astro Python SDK follows semantic versioning for releases. Check the changelog for the latest changes.

Release managements

To learn more about our release philosophy and steps, see Managing Releases.

Contribution guidelines

All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.

Read the Contribution Guideline for a detailed overview on how to contribute.

Contributors and maintainers should abide by the Contributor Code of Conduct.

License

Apache Licence 2.0