Metadata-Version: 2.4
Name: dmmp
Version: 0.1
Summary: Directory metadata mapper protocol for documenting directories
Project-URL: Homepage, https://github.com/GabrielvMarinho/dmmp
Project-URL: Repository, https://github.com/GabrielvMarinho/dmmp
Project-URL: Issues, https://github.com/GabrielvMarinho/dmmp/issues
Author-email: Gabriel Volles Marinho <gabrielvmarinho1711@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: colorama>=0.4.6
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: tqdm>=4.60.0
Description-Content-Type: text/markdown

# DMMP - Directory Metadata Mapper Protocol
mapper that generates a group of .md files that represent a specific directory in a file system path, creating linked files that follow the [markdown syntax](https://www.markdownguide.org/).

## Standard metadata format
```ddmp
unique_id
output_folder_path/
output_file_name
output_file_description
```

Populate a specific directory and its subdirs in this fashion before building the output (in .dmmp files).

After doing so, run something like the following:
```
python -m dmmp -d "C:\Path1" 1 -s "C:\Path2" -m "name"
```
C:\Path1 -> path of input.  
1 -> number of nested folders to check.  
C:\Path2 -> path of output.  
name -> name on which the metadata files will be on, without extension.

now on the output path, you should see a tree of folders the represent that data you provided as input.