Metadata-Version: 2.1
Name: rptree
Version: 0.1.0
Summary: Generate directory tree diagrams for Real Python articles
Home-page: https://github.com/realpython/rptree
Author: Real Python
Author-email: info@realpython.com
Maintainer: Leodanis Pozo Ramos
Maintainer-email: leodanis@realpython.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown

# RP Tree

RP Tree is a command-line tool to generate directory tree diagrams.

## Installation

To install **RP Tree**, just run the following command:

```sh
$ pip install rptree
```

## Usage

```sh
$ rptree /path/to/directory/
```

**Note:** The `-h` or `--help` option provides help on how to use RP Tree.

## Sample Output

```sh
$ rptree hello/
./hello/
│
├── hello/
│   ├── __init__.py
│   └── hello.py
│
├── tests/
│   └── test_hello.py
│
├── requirements.txt
├── setup.py
├── README.md
└── LICENSE
```

That's it! You've generated a nice directory tree diagram.

## Features

If you run RP Tree with a directory path as an argument, then you get a full directory tree diagram printed on your screen. The default input directory is your current directory.

RP Tree also provides the following options:

- `-v`, `--version` shows the application version and exits
- `-h`, `--help` show a usage message
- `-d`, `--dir-only` generates a directory-only tree diagram
- `-o`, `--output-file` generates a full directory tree diagram and save it to a file in markdown format

## Release History

- 0.1.0
  - A work in progress

## About the Author

Leodanis Pozo Ramos - Email: leodanis@realpython.com


