Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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

  • Apache Airflow >= 2.1.0.

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`
    export AIRFLOW__CORE__XCOM_BACKEND=astro.custom_backend.astro_custom_backend.AstroCustomXcomBackend
    export AIRFLOW__ASTRO_SDK__STORE_DATA_LOCAL_DEV=true
    airflow db init
    

    Note: AIRFLOW__CORE__ENABLE_XCOM_PICKLING no longer needs to be enabled for astro-sdk-python. This functionality is now deprecated as our custom xcom backend handles serialization.

    The AIRFLOW__ASTRO_SDK__STORE_DATA_LOCAL_DEV should only be used for local development. The XCom backend docs give further details about how to set this up in non-local environments.

    Currently, custom XCom backends are limited to data types that are json serializable. Since Dataframes are not json serializable, we need to enable XCom pickling to store dataframes.

    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/python-sdk/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

Databases
Databricks Delta
Google BigQuery
Postgres
Snowflake
SQLite
Amazon Redshift
Microsoft SQL
DuckDB
File types
CSV
JSON
NDJSON
Parquet
File stores
Amazon S3
Filesystem
Google GCS
Google Drive
SFTP
FTP
Azure WASB
Azure WASBS

Available operations

The following are some key functions available in the SDK:

  • load_file: Load a given file into a SQL table
  • transform: Applies a SQL select statement to a source table and saves the result to a destination table
  • drop_table: Drops a SQL table
  • run_raw_sql: Run any SQL statement without handling its output
  • append: Insert rows from the source SQL table into the destination SQL table, if there are no conflicts
  • merge: Insert rows from the source SQL table into the destination SQL table, depending on conflicts:
    • ignore: Do not add rows that already exist
    • update: Replace existing rows with new ones
  • export_file: Export SQL table rows into a destination file
  • dataframe: Export given SQL table into in-memory Pandas data-frame

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:

  • Getting Started Tutorial: A hands-on introduction to the Astro Python SDK
  • How-to guides: Simple step-by-step user guides to accomplish specific tasks
  • Reference guide: Commands, modules, classes and methods
  • Explanation: Clarification and discussion of key decisions when designing the project

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

Download files

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

Source Distribution

astro-sdk-python-1.6.0a1.tar.gz (107.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

astro_sdk_python-1.6.0a1-py3-none-any.whl (149.9 kB view details)

Uploaded Python 3

File details

Details for the file astro-sdk-python-1.6.0a1.tar.gz.

File metadata

  • Download URL: astro-sdk-python-1.6.0a1.tar.gz
  • Upload date:
  • Size: 107.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.16

File hashes

Hashes for astro-sdk-python-1.6.0a1.tar.gz
Algorithm Hash digest
SHA256 b9ab37519c560ec5b5d0e6aa59e4eba269e1e9d84f69f2b2aa70b5ca7846c168
MD5 c8192a7206e413ef3287d50999b63bf5
BLAKE2b-256 ecc0135b9f2a4f51babd0597e1b86e4eb8b0e138010e6f6437258beb165ecdc3

See more details on using hashes here.

File details

Details for the file astro_sdk_python-1.6.0a1-py3-none-any.whl.

File metadata

File hashes

Hashes for astro_sdk_python-1.6.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 582f7e77c41e75a877730779512ac2fedc8b561426eaf702f913a7cf86edbf28
MD5 37d4deb32220b8bc53c4983f67dc22c0
BLAKE2b-256 d4e7fd0021763aac3422f1efa1b753cffd02cfb22b0d37857f09af9dc5cdf63a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page