Metadata-Version: 2.4
Name: idThree_classifier
Version: 0.1.1
Summary: A Python implementation of the ID3 decision tree algorithm
Home-page: https://github.com/yourusername/idThree-classifier
Author: Srinu Vakada
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: graphviz
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# idThree_classifier

[![Python Version](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/downloads/)
[![PyPI Version](https://img.shields.io/pypi/v/idThree-classifier.svg)](https://pypi.org/project/idThree-classifier/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A Python implementation of the ID3 decision tree algorithm with visualization capabilities.

## Features

- Pure Python implementation of ID3 algorithm
- Handles both categorical and numerical data
- Built-in tree visualization using Graphviz
- Simple API similar to scikit-learn
- Pandas DataFrame integration

## Installation

```bash
pip install idThree_classifier
