Metadata-Version: 2.3
Name: tree2structure
Version: 0.1.0
Summary: Convert tree-style folder structure into real files and folders with comments
License: MIT
Keywords: parser,project scaffolding,file generator
Author: Anar Dzhafarov
Author-email: a@dzhfrv.com
Requires-Python: >=3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.13
Requires-Dist: pytest (>=8.3.5,<9.0.0)
Description-Content-Type: text/markdown

# tree2structure

Convert a textual tree-style folder structure into nested Python dicts and generate real files/folders with inline comments.

## Install

```bash
  pip install tree2structure
```

## Usage

```python
from tree2structure.parser import parse_structure
from tree2structure.generator import create_from_structure

structure = parse_structure(your_string_raw_tree)
create_from_structure(structure, base_path="your_project/")
```

