A library with Pandas-Like api used for data manipulation and function pipeline execution
Project description
Dataruns
A Python library for data extraction, transformation, and pipeline creation.
Installation
pip install dataruns
Quick Start
from dataruns.source import CSVSource
from dataruns.core.pipeline import Pipeline
from dataruns.core.transforms import StandardScaler, FillNA, TransformComposer
import pandas as pd
# Extract data
source = CSVSource(file_path='data.csv')
data = source.extract_data()
# Create preprocessing pipeline
preprocessor = TransformComposer(
FillNA(method='mean'),
StandardScaler()
)
# Apply transformations
processed_data = preprocessor.fit_transform(data)
Features
- Extract data from CSV, SQLite, and Excel files
- Build custom data processing pipelines
- Comprehensive data transformations (scaling, missing values, column operations)
- Works with pandas DataFrames and numpy arrays
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dataruns-0.1.2a0.tar.gz
(16.0 kB
view details)
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 dataruns-0.1.2a0.tar.gz.
File metadata
- Download URL: dataruns-0.1.2a0.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ac8d331e0f7f01b1473c3d9c1a950dced4d387e7ef29977c10a570232f7bf41
|
|
| MD5 |
c5242c70d1cfa9250948c9bfa5201e01
|
|
| BLAKE2b-256 |
816020fb8c48a358734969efa833381c4605f04611963b2e3c90f1112f114d0d
|
File details
Details for the file dataruns-0.1.2a0-py3-none-any.whl.
File metadata
- Download URL: dataruns-0.1.2a0-py3-none-any.whl
- Upload date:
- Size: 13.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c008768f08c290a9a22dac2b518166b119c62953fe6de2c04c1203cbca6ed0
|
|
| MD5 |
530d89322139b8cde35937932b8f056e
|
|
| BLAKE2b-256 |
edb79dda5e30b1a06f9997ce297ec133b7236fccd497304b870e711d039318fd
|