Metadata-Version: 2.4
Name: kaggleease
Version: 1.3.10
Summary: The fastest, notebook-first way to load Kaggle datasets into pandas with one line.
Author: KaggleEase Contributors
License: MIT License
        
        Copyright (c) 2025 KaggleEase Contributors
        
        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.
Project-URL: Homepage, https://github.com/Dinesh-raya/kaagleease
Project-URL: Repository, https://github.com/Dinesh-raya/kaagleease
Project-URL: Documentation, https://github.com/Dinesh-raya/kaagleease#readme
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=7.0
Requires-Dist: ipython>=7.0.0
Requires-Dist: kagglehub>=0.1.0
Requires-Dist: pandas>=1.0.0
Requires-Dist: pyarrow>=1.0.0
Requires-Dist: requests>=2.25.0
Requires-Dist: psutil>=5.0.0
Requires-Dist: openpyxl>=3.0.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.8; extra == "dev"
Dynamic: license-file

![KaggleEase Banner](https://github.com/Dinesh-raya/kaagleease/raw/main/kaggleease_banner_1766798647754.png)

# KaggleEase 🚀
### The Universal Kaggle Gateway for Data Scientists

KaggleEase is a minimalist, high-performance Python library designed to bridge the gap between Kaggle's vast data ecosystem and your local or Colab development environment. It replaces the heavy official Kaggle package with a smart, self-healing REST client that "just works."

---

## 📘 The Masterclass Notebook
Before you dive into the code, check out our **KaggleEase_Masterclass.ipynb** located in the root directory. 

It is the **definitive guide** for everything from authentication to advanced universal format loading. 
> [!TIP]
> **[Open the Masterclass Notebook](https://github.com/Dinesh-raya/kaagleease/blob/main/KaggleEase_Masterclass.ipynb)** to see every feature in action with zero-boilerplate code.

---

## 🌟 Top Features

| Feature | Description |
| :--- | :--- |
| **🚀 Universal Load** | Handles CSV, Parquet, JSON, Excel, and SQLite automatically. |
| **🏆 Native Competitions** | Official competition slugs (like `titanic`) work out of the box. |
| **🛡️ No-Crash Fallback** | Returns local path strings for non-tabular data (Images/Models). |
| **🧠 Deep Intelligence** | Fuzzy handle matching, implicit resolution, and self-healing APIs. |
| **✨ IPython Magics** | Use `%kaggle_load` for zero-boilerplate loading in notebooks. |

---

## ⚡ Quick Start

### 1. Installation
```python
!pip install kaggleease --upgrade
```

### 2. Authentication (Foolproof)
You can set environment variables (safest) or use `kaggle.json`.
```python
import os
os.environ['KAGGLE_USERNAME'] = "your_username"
os.environ['KAGGLE_KEY'] = "your_api_key"
```

### 3. Load Anything
```python
from kaggleease import load

# Loaded as a Pandas DataFrame automatically
df = load("titanic") 

# Images? Returns the local path string
path = load("resnet50")
```

---

## 🛠️ Advanced Usage

### Universal Formats
```python
# Load JSON
df = load("rtatman/iris-dataset-json-version")

# Load SQLite (Auto-detects the first table!)
df = load("world-bank/world-development-indicators")
```

### Deep-Scan Intelligence
If a dataset has an obscured API (like `heptapod/titanic`), KaggleEase bypassed the error, downloads the data, and scans every subdirectory to find your CSV for you.

---

## 🤝 Contributing & Support
Built by Data Scientists, for Data Scientists.
- **GitHub**: [Dinesh-raya/kaagleease](https://github.com/Dinesh-raya/kaagleease)
- **PyPI**: [kaggleease](https://pypi.org/project/kaggleease/)

---
*KaggleEase v1.3.9 - The "Universal Resilience" Release.*
