Metadata-Version: 2.1
Name: directory-tree-generator
Version: 0.0.1
Summary: This module helps to print/generate a directory tree.
Home-page: https://github.com/Ajay2810-hub/directory-tree-generator
Author: Ajay Lingayat
Author-email: lingayatajay2810@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'

# directory-tree-generator

## Requirements

```
python >= 3.0
```

## Installation
```
pip install directory-tree-generator
```

## Usage
Pass the directory path to the generate method

```python
from DirectoryTree import TreeGenerator
Tree = TreeGenerator()
Tree.generate('C:/users/Ajay/Desktop/Junk')
```

Output
```
+ Junk/
   + Stylesheets/
       • country.css
   + Java Files/
       • mm.java
   + Media/
      + Images/
          • globe.png
          • 1598791605362.jpg
      + GIFs/
          • connection_11598806195526.gif
      + Audios/
          • Sound.mp3
   + Database Files/
       • db.sqlite3
   + PDFs/
       • Pdf.pdf
   + Javascript Files/
       • app.js
   + Python Files/
       • Notepad.py
   + Text Files/
       • requirements.txt
   + HTML Files/
       • share.html
   + Json Files/
       • package-lock.json
   + Documents/
       • DBMS_ALL Programs.docx
   + Readme Files/
       • README.md
```


