Metadata-Version: 2.4
Name: albero-viz
Version: 0.1.1
Summary: A directory tree visualization tool with colored output
Author: Abdelhakim6
License: MIT
Project-URL: Repository, https://github.com/Abdelhakime6/Albero
Keywords: tree,directory,filesystem,cli,visualization
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
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: Programming Language :: Python :: 3.12
Classifier: Topic :: System :: Filesystems
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# 🌳 Albero-viz — Directory Tree Visualization Tool

**Albero-viz** is a simple, fast, and colorful command-line tool to visualize directory structures.

## ✨ Features

- 🌲 **Tree-style visualization** of directory structures  
- 🎨 **Colored output**  
  - **Blue** for directories  
  - **Green** for files  
- 📁 Option to **display only directories**  
- ⚡ **Fast and lightweight**  
- 🐍 **Pure Python** — no external dependencies  

## 📦 Installation

```bash
pip install albero-viz
```

## 🚀 Usage

### Show a directory tree

```bash
albero -p /path/to/directory
# or
albero --path /home/user/projects
```

### Show only directories

```bash
albero -f -p /path/to/directory
```

## 🛠️ Options

| Option        | Description                         |
|---------------|-------------------------------------|
| `-p`          | Path to the directory to visualize  |
| `-f`          | Show only folders (no files)        |


