Metadata-Version: 2.4
Name: timeseriesdatasets
Version: 0.1.0
Summary: A curated collection of time series datasets for data analysis, forecasting, statistical analysis, and machine learning in Python. It includes stock market prices, climate and weather data, energy consumption, air passengers, cryptocurrency, sensor readings, sales records, and more — sourced from Kaggle.
Home-page: https://github.com/lightbluetitan/timeseriesdatasets-py
Author: Renzo Caceres Rossi
Author-email: Renzo Caceres Rossi <arenzocaceresrossi@gmail.com>
Maintainer-email: Renzo Caceres Rossi <arenzocaceresrossi@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Renzo Caceres Rossi
        
        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: datasets,time series,forecasting,statistical analysis,econometrics,signal processing,autoregression,ARIMA,seasonality,trend analysis,data science,research,data analysis,stationarity,autocorrelation,regression,statistics,mathematics,machine learning,kaggle
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 :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
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

# timeseriesdatasets

[![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 `timeseriesdatasets` package provides a curated collection of time series
datasets for data analysis, forecasting, statistical analysis, and machine learning
in Python. It includes stock market prices, climate and weather data,
energy consumption, air passengers, cryptocurrency, sensor readings, sales records,
and more — sourced from Kaggle.

## Installation
You can install the `timeseriesdatasets` package from PyPI:
```bash
pip install timeseriesdatasets
```

## Usage
```python

import timeseriesdatasets as ts

# List all available datasets

datasets = ts.list_datasets()
print(datasets)

# Load a specific dataset

df = ts.load_dataset('microsoft_stock')
print(df.head())

# Describe dataset

df_01 = ts.describe('nvidia_stock')
print(df_01)

```

## 📊 Some Available Datasets

| Dataset | Description | 
|---------|-------------|
| `microsoft_stock` | Microsoft stock price time series from 2015 to 2021.| 
| `yahoo_stock` | Yahoo stock price time series data for forecasting.| 
| `tesla_stock` | Tesla stock price time series data for daily trading and forecasting.| 
| `nvidia_stock` | NVIDIA stock price time series from 1999 to 2025.| 

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


## License

The `timeseriesdatasets` library is released under the **MIT License**, allowing free use for both commercial and non-commercial purposes.
See the [LICENSE](LICENSE) file for details.
