Skip to main content

Data transfer utilities between files and databases

Project description

Easy Data Loader 🚀

PyPI version License: MIT Downloads

Easy Data Loader is a flexible, modular Python library designed to streamline ETL (Extract, Transform, Load) processes between various file data sources (csv, xlsx, parquet, orc) and databases (MSSQL, PostgreSQL and others).

✨ Key Features

  • Declarative Configuration: Manage connections and pipelines through simple python files and .env resources.
  • Integrated CLI: Initialize a standardized project structure with a single command.
  • Custom Transformation Hooks: Inject your own Pandas transformation logic directly into the pipeline execution.
  • Performance Optimized: Built-in support for chunked loading and writing to handle large datasets efficiently.
  • Extensible Architecture: Uses a Factory Pattern for database connectors, making it easy to support new drivers.

📦 Installation

Install directly via pip or uv:

pip install easy_data_loader
uv add easy_data_loader

🚀 Getting Started

  1. Initialize a new project structure to generate template configurations:
    easy-data-loader init
    
  2. Review the generated config/ folders for sample resources and pipelines.
  3. Run all discovered pipelines across the active configurations:
    easy-data-loader run_all
    

✔️ Generic concepts

easy_data_loader uses resources as a way to define a file or a database. The resouces can represent either a source or a destination making posible the folowing ETL scenarios: file -> file, file -> database, database -> file, database -> database.

easy_data_loader project initializer will created the predefined folder structure /config/resources where the resources are expected to be defined following the current convention: the file type is .env and the file name must be prefixed with the resource type file_ or database_. The predefined folder structure together with the naming convention enables easy_data_loader to find and load all resources.

A secondary predefined folder /config/pipelines will contain the pipeline definition files, which are regular Python files. There are 3 types of pipelines that can be defined:

  • LoadPipeline the main pipeline type which transports data from source to destination
  • ProcedurePipeline a pipeline dedicated for executing stored procedures inside a database
  • OrchestratorPipeline a pipeline that can execute a group of pipelines sequentialy

LoadPipeline

In order to define a LoadPipeline we must use the BasePipelineDefinition from easy_data_loader as depicted in the example pipelines created by the initializer. In the simplest form there are only a few mandatory parameters:

  • pipeline_name : str - this name will be used to execute the pipeline
  • source : str - the file name (without extension) coresponding to the desired resource to be the data source
  • destination : str - the file name (without extension) coresponding to the desired resource to be the data destination

If either the source or destination are a database then additional parameters become mandatory:

  • source_sql : str - can be a table name or a specific query in the SQL dialect of the source database flavor
  • destination_table : str - table name where the data will be inserted

There are many other aspects of the pipeline that can be defined:

  • audit : str - the pipeline has a built in audit functionality, it records certain information after the pipeline completes in a SqlLite database. If the user desires, the same information can be recorded in a database resource
  • validator: Pydantic BaseModel - the data read from the source resource can be validated using an arbitrary defined Pydantic model before is written to destination
  • columns : Dict[str, ColumnDefinition] - this parameter is used for strict control on how the data is written to destination; it has the dual purpose of renaming the columns and also define explicitly the data types (mainly for inserting into a database table); the ColumnDefinition is constructed with an optional target_name: str for renaming columns and / or a data_type : SqlAlchemy Type thus controling column data types, lenghts, precision etc.
  • read_parameters : Dict[str, Any] and write_parameters : Dict[str, Any] - these parameters control how the data is being read or written from source to destination and provide an easy way to use special delimiters for files, drop and recreate the database table, etc. easy_data_loader is using pandas as the transport layer therefore the read and write parameters will be passed to the coresponding read and write functions supported by pandas.
  • the pipeline has a set of predefined hooks allowing the execution of functions at specific moments during the execution: file_pre_process : Callable - executed before the file is read into the pandas DataFrame (e.g. unzip the file); transform : Callable - perform data transformation over the data already in the pandas DataFrame (requires pandas methods); file_post_process : Callable - after the pipeline completes and the data is written to the destination perform post processing on the source file (e.g. move the file to another folder)

ProcedurePipeline

This secondary pipeline type is responsible for executing one or more stored procedures inside a database. To define one we need to use the ProcedureDefinition with the following parameters:

  • pipeline_name : str - this name will be used to execute the pipeline
  • audit : str, optional - database resource name where the audit info will be recorded
  • resource : str - database resource name where the stored procedure(s) wil be executed
  • procedures : List[tuple(str, Optional[Dict[str, Any]])] - list of one or more stord procedures along with optional procedures parameters as dictionaries

OrchestratorPipeline

This pipeline type is responsible of executing sequentially a set of pipelines, LoadPipelines and / or ProcedurePipelines. Very simple to define using the OrchestratorDefinition with:

  • orchestrator_name : str - name by which the orchestrator is executer
  • 'pipelines : List[str]` - list of pipelines to execute sequentially
  • fail_fast : bool, Default True - if any of the pipelines fail the rest of the pipelines in the list do not get executed

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

easy_data_loader-0.1.2.tar.gz (36.5 kB view details)

Uploaded Source

Built Distribution

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

easy_data_loader-0.1.2-py3-none-any.whl (34.1 kB view details)

Uploaded Python 3

File details

Details for the file easy_data_loader-0.1.2.tar.gz.

File metadata

  • Download URL: easy_data_loader-0.1.2.tar.gz
  • Upload date:
  • Size: 36.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for easy_data_loader-0.1.2.tar.gz
Algorithm Hash digest
SHA256 bcfc6a115dabd6183e143bab551059055d030cfe3d6a7620e61e2b7577b279d4
MD5 66c49f4ca426d3b90f31f56f999d808b
BLAKE2b-256 972aa7df8c471ea47375ff5be9b0778a91fe6867b557e43171d2a697d9d757da

See more details on using hashes here.

Provenance

The following attestation bundles were made for easy_data_loader-0.1.2.tar.gz:

Publisher: publish.yml on whatever82/easy_data_loader

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file easy_data_loader-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for easy_data_loader-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9c5c941df78edaccc8a462a36a82f123195a3554714183ac660fa5caf9e5a361
MD5 daac08d4f7f2a005c0ae540a71f87620
BLAKE2b-256 c59b6df03130a26fd90298912a00ca93139cbadb373685e5a32795900d8fc433

See more details on using hashes here.

Provenance

The following attestation bundles were made for easy_data_loader-0.1.2-py3-none-any.whl:

Publisher: publish.yml on whatever82/easy_data_loader

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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