Metadata-Version: 2.4
Name: electronicspy
Version: 0.1.1
Summary: A curated collection of electronics, customer sales, and financial market datasets sourced from Kaggle for data analysis, statistical modeling, machine learning research, and more, including electronics product data, customer purchase behavior and demographics, sales transactions, product types, and historical stock prices for Samsung Electronics.
Home-page: https://github.com/diegoruben3124-afk/electronicspy
Author: Diego Chumpitaz Palomino
Author-email: Diego Chumpitaz Palomino <diegoruben3124@gmail.com>
Maintainer-email: Diego Chumpitaz Palomino <diegoruben3124@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Diego Chumpitaz Palomino
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Keywords: electronics,electronic products,datasets,sales,customer behavior,purchase behavior,consumer data,customer demographics,transactions,product types,retail,e-commerce,sales analysis,financial data,stock prices,stock market,Samsung Electronics,historical stock data,financial analysis,stock forecasting,trend analysis,data science,statistics,machine learning,data analysis,research
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=1.5
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# electronicspy

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)

The `electronicspy` package provides a curated collection of electronics and consumer-technology
datasets for data analysis, statistical modeling, and machine learning research. Includes retail
and marketplace product data, e-commerce sales transactions and customer purchase behavior, and
historical stock prices for major electronics companies, sourced from curated datasets on Kaggle.

## Installation

You can install the `electronicspy` package from PyPI:
```bash
pip install electronicspy
```

## Usage
```python

import electronicspy as ep

# List all available datasets

datasets = ep.list_datasets()
print(datasets)

# Load a specific dataset

df = ep.load_dataset('electronics_dataset')
print(df.head())

# Describe dataset

df_01 = ep.describe('electronic_sales')
print(df_01)

```

## 📊 Some Available Datasets

| Dataset | Description |
|---------|-------------|
| `electronics_dataset` | Product and pricing data scraped from an online electronics marketplace. |
| `electronic_sales` | Sales transaction records for an electronics company (Sep 2023–Sep 2024), including customer demographics, product types, and purchase behavior. |
| `samsung_electronics_stocks` | Historical stock price data for Samsung Electronics, including opening/closing prices, daily highs and lows, and trading volume. |

> Run `electronicspy.list_datasets()` or `ep.list_datasets()` (using `ep` as alias) to see the full list of available datasets.

## Disclaimer

The datasets included in `electronicspy` are provided strictly for educational,
research, and informational purposes. All datasets originate from curated sources
on Kaggle and retain their original licenses and attributions.

The author of `electronicspy` makes no warranties, express or implied, regarding
the accuracy, completeness, or suitability of any dataset for a particular purpose.
Users are solely responsible for ensuring that their use of these datasets complies
with applicable licenses, laws, and ethical guidelines.

Any findings, conclusions, or decisions derived from the use of these datasets
are the sole responsibility of the user. The author shall not be held liable for
any direct, indirect, incidental, or consequential damages arising from the use
or misuse of the datasets included in this library.

## License

The `electronicspy` library is released under the **MIT License**, which allows free use,
modification, and distribution, including in proprietary software, provided that the
original copyright notice and license are included. See the [LICENSE](LICENSE) file for details.
