A simple and lightweight ETL package for data pipelines using Python, Pandas, PySpark, and Hadoop
Project description
FriendlyETL
A beginner-friendly and customizable Python ETL (Extract, Transform, Load) package designed for fast and efficient data workflows. Built using Pandas and compatible with files and databases, this package helps you automate your ETL pipelines with just a few lines of code.
🔧 Features
- ✅ Extract data from CSV, Excel, JSON, or databases (MySQL)
- ✅ Clean and transform datasets using common operations
- ✅ Load data to CSV or back into MySQL databases
- ✅ Modular and easy to extend for your own workflows
- ✅ Designed for beginners, students, and professionals alike
🗂 Project Structure
friendlyetl/ ├── friendlyetl/ │ ├── init.py │ ├── extract.py │ ├── transform.py │ ├── load.py ├── setup.py ├── README.md └── dist/
🚀 Installation
Install the package from your local build:
pip install dist/friendlyetl-1.0.3-py3-none-any.whl
import friendlyetl as fetl
# Extract data from CSV
df = fetl.extract_data('input/sales.csv')
# Transform data
clean_df = fetl.clean_data(df)
# Load to MySQL
fetl.load_to_mysql(clean_df, db_name="sales_db", table_name="clean_sales")
## Dependencies
Python 3.6+
pandas
sqlalchemy
mysql-connector-python (if using MySQL)
Install all dependencies:
pip install -r requirements.txt
👤 Author
Divith Raju
Built with ❤️ to simplify ETL pipelines.
🔗 GitHub
📜 License
This project is licensed under the MIT License. See LICENSE file for more information.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file friendlyetl-0.0.1.tar.gz.
File metadata
- Download URL: friendlyetl-0.0.1.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
389e1ea0c15a83513d89fd5a3add25e30f208efdb5a4c20f42721286d180434e
|
|
| MD5 |
11d77444ced929a80cdea45539450011
|
|
| BLAKE2b-256 |
65c08e18c3aa68aa6de6f801555d945c3c8598c617a4a190eaa3bd4ca5358bbf
|
File details
Details for the file friendlyetl-0.0.1-py3-none-any.whl.
File metadata
- Download URL: friendlyetl-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15f32cc5bc6720a78eb86e6329a2da3d50d55726dfb2a1900813184deef67b15
|
|
| MD5 |
44b38e844277505398c185ec7038fe05
|
|
| BLAKE2b-256 |
40e8b6aba34f8f8566f87ccd4d84779e40be6549cc0c87f274916d65643c1a57
|