Metadata-Version: 2.4
Name: DDSTAV
Version: 0.1.0
Summary: Document data structure type analyzer and vizualizer
Author: Ondrej Cánik
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: matplotlib>=3.7
Requires-Dist: numpy>=1.23
Requires-Dist: pymongo>=4.6
Requires-Dist: seaborn>=0.12
Description-Content-Type: text/markdown

# DDSTAV

**DDSTAV** (Document Data Structure Analyzer & Visualizer) is a Python package for analyzing and visualizing the structure of document-based databases.

It helps you quickly understand:
- the shape of documents
- data types across collections
- count of separate data structures in collections

## 🚀 Usage

The main entry point of the package is the `ddstav` function.

### Function parameters

- **`uri`** (`str`)  
  MongoDB connection string specifying the deployment to connect to.

- **`database_name`** (`str`)  
  Name of the MongoDB database to be analyzed.

### Example

```python
from DDSTAV import ddstav

ddstav("mongodb://localhost:27017/", "test_database")
```






