Skip to main content

Python ETL tool

Project description

Welcome to Petaly!

Petaly is an open-source ETL (Extract, Transform, Load) tool created by and for data professionals! Our mission is to simplify data movement and transformation across different platforms with a tool that truly understands the needs of the data community.

Designed for seamless data exchange, Petaly supports PostgreSQL, MySQL and CSV formats, with plans to expand and integrate additional open-source technologies. It makes connecting and transferring data across various systems effortless. Petaly is user-friendly and requires no programming knowledge. Data pipelines can be easily configured using the YAML format, making the tool ready to use immediately after installation.

Important

This is an Alpha version of the Petaly project!

Getting Started

Explore the documentation below:


1. Installation
2. Init config file and workspace
3. Init a pipeline
4. Run the pipeline
5. Load CSV to Postgres (Step-by-Step Tutorial)
6. Pipeline better explained
7. More Examples

Tool Features

In the current version Petaly provides extract and load data between following endpoints:

  • CSV
  • MySQL (tested version 8.0+)
  • PostgreSQL (tested version 16+)

Requirements:

  • Python 3.10 - 3.12

Tested on

Petaly was tested on:

OS:

  • MacOS 14.6
  • Ubuntu 22.04.3 LTS

It's possible that the tool will work with other operating systems and other databases and python versions. It just hasn't been tested yet.

1. Installation

Petaly can be installed using pip or downloaded directly from this repository.

Install with pip

$ mkdir petaly
$ cd petaly
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip3 install petaly

Alternatively, download and install from GitHub

$ git clone https://github.com/petaly-labs/petaly.git
$ cd petaly
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip3 install -r requirements.txt
$ cd src/

# Installation step completed

Check petaly installation.

If petaly was installed with:

$ pip install petaly

run:

$ python3 -m petaly --help

If the repo was cloned from the GitHub petaly-labs repository navigate to the src folder first:

$ cd petaly/scr and execute the command above

2. Initialize config file and workspace

This tutorial explains the petaly.ini configuration file and how to create a workspace.

Init config file

To create petaly.ini file run following step once:

$ python3 -m petaly init -c /absolute-path-to-your-config-dir/petaly.ini

After the configuration file has been created, either use it always with the [-c] argument

$ python -m petaly init -c /absolute-path-to-your-config-dir/petaly.ini

or to skip the [-c] argument, set the environment variable PETALY_CONFIG_DIR

$ export PETALY_CONFIG_DIR=/absolute-path-to-your-config-dir

Init workspace

This step must be performed only once after petaly installation.

If the workspace is already initialised, you can skip the following step and start configuring pipelines. If the workspace hasn't been initialised yet, first define following three parameters in petaly.ini

pipeline_dir_path=/absolute-path-to-pipelines-dir
logs_dir_path=/absolute-path-to-logs-dir
output_dir_path=/absolute-path-to-output-dir

And then initialize the workspace with following command. This command will simply create all these 3 paths defined above in the petaly.ini file.

$ python3 -m petaly init --workspace -c /path_to_config_dir/petaly.ini

3. Init a pipeline

Run the following command and follow the wizard steps to initialize a pipeline my_pipeline. No changes will be made to the target endpoint at this point.

$ python3 -m petaly init -p my_pipeline -c /path_to_config_dir/petaly.ini

Run the following command to configure your pipeline. Once the pipeline is created, you can modify it manually.

For detailed instructions, check in the section: Pipeline explained

4. Run Pipeline

Now you can run the pipeline my_pipeline and load data from the specified source. Note that it will make changes, re/create tables in the target endpoint (database or folders)

$ python3 -m petaly run -p my_pipeline -c /path_to_config_dir/petaly.ini

5. Load CSV file to Postgres

In this tutorial, we’ll show you how to run a new pipeline and load a test CSV file into PostgreSQL.

5.1. Before You Start

  • Ensure that Petaly is installed properly and your workspace is initialized.

  • Refer to our installation and workspace setup guides if needed.

  • Install a PostgreSQL server locally, or use a Docker image for setup.

5.2. Configure the Pipeline:

  • Run the following command to configure your pipeline. For detailed instructions, check the section below Pipeline explained

  • $ python3 -m petaly init -p csv_to_postgres -c /path_to_config_dir/petaly.ini

5.3. Download the test files:

  • Download the stocks and options CSV files from the repository. ./tests/data/csv/* and store it under /your-directory-path-to-csv-files
  • unzip it under linux or mac with: gunzip options.csv.gz, gunzip stocks.csv.gz

5.4. Set Up the Pipeline:

  • Use csv as the source and postgres as the target. Follow the configuration wizard.

  • Specify objects for stocks and options, and provide the appropriate paths in object_source_dir and file_names inside.

5.5. Run the Pipeline:

  • Execute the pipeline using the configured settings:

  • $ python3 -m petaly run -p csv_to_postgres -c /path_to_config_dir/petaly.ini

5.6 CSV to Postgres Full Examples

Use the wizard to create the appropriate pipeline skeleton, as different connector types require specific parameters.

Once the pipeline is created, you can modify it using editors like vi, nano, or any other text editor.

The following examples are provided for reference only. For detailed instructions, and other examples check the section below Pipeline explained

CSV to Postgres

pipeline:
  pipeline_attributes:
    pipeline_name: csv_to_psql
    is_enabled: true
  source_attributes:
    connector_type: csv
  target_attributes:
    connector_type: postgres
    database_user: root
    database_password: db-password
    database_host: localhost
    database_port: 5432
    database_name: petalydb
    database_schema: petaly_tutorial
  data_attributes:
    use_data_objects_spec: only
    object_default_settings:
      header: true
      columns_delimiter: ","
      quote_char: none-quote
---
data_objects_spec:
- object_spec:
    object_name: stocks
    destination_object_name:
    recreate_destination_object: true
    cleanup_linebreak_in_fields: false
    exclude_columns:
    -
    object_source_dir: /your-directory-path-to-csv-files
    file_names:
    - stocks.csv
- object_spec:
    object_name: options
    destination_object_name:
    recreate_destination_object: true
    cleanup_linebreak_in_fields: false
    exclude_columns:
    -
    object_source_dir: /your-directory-path-to-csv-files
    file_names:
    - options.csv

6. Pipeline explained

This tutorial provides a step-by-step guide for getting started with Petaly after installation. It begins with an explanation of the petaly.ini configuration file and then dives into the details of the pipeline.yaml file.

Pipeline configuration

To avoid mistakes during configuration, it is recommended to use the pipeline wizard. The configuration differs depending on the endpoints.

To use pipeline wizard run following command:

$ python3 -m petaly init -p my_pipeline -c /path_to_config_dir/petaly.ini

Pipeline structure

After creating the pipeline, let's review the structure and each parameter.

Here is an example of an export table from mysql to postgres

The pipeline.yaml file contains two documents pipeline: and data_objects_spec:.

The pipeline: document defines pipeline_attributes:, source_attributes:, target_attributes: and data_attributes:

The second document in the pipeline.yaml file, separated by three dashes, is the data_objects_spec: document which contains the definition of each object/table.

Here is the skeleton of the whole pipeline.yaml document:

pipeline:
  pipeline_attributes:
    ....
  source_attributes:
    ....
  target_attributes:
    ....
  data_attributes:
    ....
--- 
data_objects_spec:[] 

Pipeline Main Blocks:

The structure of a pipeline definition is explained in the following sections.

pipeline_attributes

  pipeline_attributes:
    # The name of the pipeline must be unique
    pipeline_name: mysql_to_psql
    
    # True indicates that the pipeline is enabled. The default is true
    is_enabled: true
    

source_attributes

The source attributes specify the source connections. The connection parameters may differ depending on the endpoint type.

  source_attributes:
    # Specify endpoint type: mysql, postgres, csv
    connector_type: mysql 
    
    # Specify database user name
    database_user: root
    
    # Specify database user password in plain text
    database_password: dbpassword
    
    # Specify the database hostname or IP address. It can also be remote, if access is given to the machine running petaly, or if an ssh tunnel is provided.
    database_host: localhost
    
    # Specify database port
    database_port: 3306
    
    # Specify database name
    database_name: tutorial_db
    

target_attributes

The target attributes specify the target connections. The connection parameters may differ depending on the endpoint type.

  target_attributes:    
    
    # Specify endpoint type: mysql, postgres, csv
    connector_type: postgres
    
    # Specify database user name
    database_user: postgres
     
    # Specify database user password in plain text
    database_password: dbpassword
    
    # Specify the database hostname or IP address. It can also be remote, if access is given to the machine running petaly, or if an ssh tunnel is provided.
    database_host: localhost
    
    # Specify database port
    database_port: 5432
    
    # Specify database name
    database_name: petaly_db
     
    # Specify database schema name
    database_schema: petaly

data_attributes

Following parameters configuring default behavior for data-objects/tables

    data_attributes:
      
      # provide fine definition: only, prefer, ignore 
      data_objects_spec_mode: only

In this step, you will define the main behaviour of the object definition, as follows:
If only [default]: Load only the objects explicitly specified in data_objects_spec[] section. These objects will be configured in the next step.
If ignore: Load all objects from the database_schema (or database_name if no schema exists) as defined in the source_attributes section, completely disregarding data_objects_spec[] section.
If prefer: Load all objects from the database_schema, but for objects specified in data_objects_spec[], apply the refined configuration defined in that section.

object_default_settings

The object_default_settings parameter defines the default configuration options applied to objects during processing. These settings serve as a baseline and can be overridden by more specific configurations if needed.

This section is used for loading data from CSV files, as well as for extracting and loading data from databases.

It provides a standardized configuration to facilitate seamless data exchange between different engines, such as MySQL and PostgreSQL.

      # define csv parse options. It also valid for mysql, postgres extract or load
      object_default_settings:
        
        # Specifies whether the file should contains or contains a header line with the names of each column in the file.
        header: true
        
        # The character delimiting individual cells in the CSV data.
        columns_delimiter: ","
        
        # Choose between double-quote, single-quote or none-quote. The default is double-quote.
        quote_char:  double-quote
        

data_objects_spec

The second document data_objects_spec: in the pipeline.yaml file, separated by three dashes, contains none, one or more object (table).

---
data_objects_spec:[]

As explained above data_objects_spec is only used when it set to only or prefer. The default mode is only data_objects_spec_mode: only

Take a look at the data_objects_spec: bellow:

---
data_objects_spec:
- object_spec:
    object_name: orders
    destination_object_name:   
    ...
- object_spec:
    object_name: customers
    destination_object_name: customers_reloaded
    ...     

The object_name has to be unique. This can be a source/destination table name. Multiple objects can be specified starting with a dash - object_spec: and followed by object_name: table_name and few others parameters.

Optionally, the destination object/table name can be different. To achieve this specify the parameter destination_object_name.

---
data_objects_spec:
- object_spec:
    object_name: stocks
    destination_object_name: stocks_new

If the recreate_destination_object parameter is true, the target object (table) will be recreated. Otherwise, the object/table will only be created if it does not exist. The default is false.

    recreate_destination_object: false

Use the exclude_columns parameter to exclude specific columns, or leave it blank to include all columns for specific table/object. If you want to exclude columns: either specify a comma-separated list of columns to exclude in parentheses [] or use dashes '-', one per line. As shown below:

To include all

    exclude_columns:
      - null

To exclude column1, column2

    exclude_columns:
      - column1
      - column2

Alternative approach to exclude column1, column2

    exclude_columns: [column1, column2]

csv files as source

In object_source_dir:, specify the path to the directory where the csv files are stored. This is only relevant for file uploads.

object_source_dir: /absolute-path-to-file-dir

Specify the filenames to load specific file or leave blank/null to include all files from object_source_dir:. At least one dash or empty brackets [] should be present. If you leave it empty/null, remember that all files in object_source_dir: should have the same metadata structure as they will be loaded into the same table. In case you want to load only a specific file/s from the given object_source_dir: use dash character one per line and filename.

Use one of the following options:

  1. To load all files from the object_source_dir set dash to null - null or keep dash - empty:
    file_names:
    - null

Alternatively, to load all files from the object_source_dir set:

    file_names: []
  1. To load specific files from the object_source_dir set:

    file_names:
    - file_name.csv
    - file_name_2.csv
    - file_name_3.csv

Alternatively, to load specific files from object_source_dir set:

    file_names: [file_name.csv, file_name_2.csv, file_name_3.csv]

csv as target

The target file format is specified through connector_type: csv.

The initial data is loaded into the output folder defined in the petaly.ini file. The destination_file_dir defines the final directory after download the data in the output folder first.

pipeline:
  ....
  target_attributes:
    connector_type: csv
    destination_file_dir: /your-path-to-destination-folder

7. More Examples

MySQL to Postgres

The following example exports a table stocks from Mysql into PostgreSQL under the name stocks_in_postgres

pipeline:
  pipeline_attributes:
    pipeline_name: mysql2psql
    is_enabled: true
  source_attributes:
    connector_type: mysql
    database_user: root
    database_password: db-password
    database_host: localhost
    database_port: 3306
    database_name: petaly_tutorial
  target_attributes:
    connector_type: postgres
    database_user: postgres
    database_password: db-password
    database_host: localhost
    database_port: 5432
    database_name: petalydb
    database_schema: petaly_tutorial
  data_attributes:
    data_objects_spec_mode: only
    object_default_settings:
      header: true
      columns_delimiter: ','
      quote_char: double-quote
---
data_objects_spec:
- object_spec:
    object_name: stocks
    destination_object_name: stocks_in_postgres
    recreate_destination_object: false
    cleanup_linebreak_in_fields: false
    exclude_columns:
    -

CSV to MySQL

The following example create a new table and load csv file stocks.csv into Mysql database.

pipeline:
  pipeline_attributes:
    pipeline_name: csv2mysql
    is_enabled: true
  source_attributes:
    connector_type: csv
  target_attributes:
    connector_type: mysql
    database_user: root
    database_password: db-password
    database_host: localhost
    database_port: 3306
    database_name: petaly_tutorial
  data_attributes:
    use_data_objects_spec: only
    object_default_settings:
      header: true
      columns_delimiter: ","
      quote_char: none
---
data_objects_spec:
- object_spec:
    object_name: stocks
    destination_object_name:
    recreate_destination_object: true
    cleanup_linebreak_in_fields: false
    exclude_columns:
    -
    object_source_dir: /your-path-to-csv-folder/stocks
    file_names:
    - 
- object_spec:
    object_name: options
    destination_object_name:
    recreate_destination_object: true
    cleanup_linebreak_in_fields: false
    exclude_columns:
    -
    object_source_dir: /your-directory-path-to-csv-files
    file_names:
    - options.csv
    - options2.csv    

Postgres to CSV

The following example exports tables stocks* and *users from Postgres into destination folder destination_file_dir: /your-path-to-destination-folder It also exclude columns likebroadway, likemusicals of table users from export.

pipeline:
  pipeline_attributes:
    pipeline_name: psql2csv
    is_enabled: true
  source_attributes:
    connector_type: postgres
    database_user: postgres
    database_password: db-password
    database_host: localhost
    database_port: 5432
    database_name: petalydb
    database_schema: petaly_schema
  target_attributes:
    connector_type: csv
    destination_file_dir: /your-path-to-destination-folder
  data_attributes:
    data_objects_spec_mode: only
    object_default_settings:
      header: true
      columns_delimiter: ","
      quote_char: double-quote
---
data_objects_spec:
- object_spec:
    object_name: stocks
    destination_object_name: stocks_as_csv
    recreate_destination_object: true
    cleanup_linebreak_in_fields: true
    exclude_columns:
    - 
- object_spec:
    object_name: users
    destination_object_name: users_as_csv
    recreate_destination_object: true
    cleanup_linebreak_in_fields: true
    exclude_columns:
    - likebroadway
    - likemusicals

Let's Build Together 🌱

Join us in building something meaningful together. The foundation of any open-source project is its community, a group of individuals collaborating, sharing knowledge and contributing to a shared vision. At Petaly, every contribution, no matter the size, plays an important role in shaping the project. We’re continuously improving Petaly, and your feedback and contributions are invaluable. Check out our Contributing Guide to see how you can get involved. Connect with fellow contributors, share your experiences and get support in our community channels.

Together, we can make Petaly even better!

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

petaly-0.0.8.tar.gz (61.3 kB view details)

Uploaded Source

Built Distribution

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

petaly-0.0.8-py3-none-any.whl (81.8 kB view details)

Uploaded Python 3

File details

Details for the file petaly-0.0.8.tar.gz.

File metadata

  • Download URL: petaly-0.0.8.tar.gz
  • Upload date:
  • Size: 61.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.6

File hashes

Hashes for petaly-0.0.8.tar.gz
Algorithm Hash digest
SHA256 c91c054460809993ff0a1984eadb6886b4a12b2eb51527c4acf857d88d7edccc
MD5 2c70f65905f8b78d2d73a0bf43257165
BLAKE2b-256 4e5d4042db19394659c07a91d720dc989ea42b204e0306a44a9da52755b85e09

See more details on using hashes here.

File details

Details for the file petaly-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: petaly-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 81.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.6

File hashes

Hashes for petaly-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 28991176914fce6e7e171c5f7192a08a5920a4fa85157059f40d1756388cf3b3
MD5 2bdb8258105acad52fe2341ea25ca0a1
BLAKE2b-256 c5965901ea3e6c952223a23ae87eabe9dfa12b1963320de0575e712a3ee82824

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 Pingdom Monitoring Sentry Error logging StatusPage Status page