Metadata-Version: 2.4
Name: dataquick
Version: 0.1.0
Summary: A fast and easy Auto EDA library for data scientists
Home-page: https://github.com/quratalvi11-dotcom/myproject1
Author: quratalvi11-dotcom
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: seaborn
Requires-Dist: scipy
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# DataQuick 

A fast and easy Auto EDA library for data scientists.

## Features
- Auto data analysis
- Missing values report
- Data cleaning
- Auto visualizations

## Installation
```bash
pip install dataquick
```

## Usage
```python
import pandas as pd
from dataquick.analyzer import DataAnalyzer

df = pd.read_csv("data.csv")
analyzer = DataAnalyzer(df)
analyzer.analyze()
```
