Metadata-Version: 2.4
Name: kombat
Version: 0.1.0
Summary: A Python library for crawling and analyzing file system hierarchies
Project-URL: Homepage, https://github.com/vunicjovan/kombat
Project-URL: Bug Tracker, https://github.com/vunicjovan/kombat/issues
Author-email: Jovan Vunic <your.email@example.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Kombat

A Python library for crawling and analyzing file system hierarchies.

## Installation

```bash
pip install kombat
```

## Usage

```python
from kombat import SystemCrawler

crawler = SystemCrawler()
crawler.build_hierarchy("/path/to/directory")
print(crawler.hierarchy)
```

