Metadata-Version: 2.4
Name: elt-pipeline
Version: 0.1.0
Summary: A simple ELT pipeline package to extract, transform, and load data.
Author-email: Austin <austinbenjamin128@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: sqlalchemy

# ELT pipeline 

A simple ELT (Extract, Load, Transform) pipeline package for CSV, API, and Database operations.

- db_connection.py - Creates the engine to your database

- extractor.py - Uses the engine to extract data into a DataFrame

- transformer.py - Cleans and prepares the DataFrame

- loader.py - Saves the cleaned DataFrame to CSV or JSON
