You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: directory-tree-generator-python/README.md
+22-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ To run **RP Tree**, you need to download the source code. Then open a terminal o
9
9
1. Create and activate a Python virtual environment
10
10
11
11
```sh
12
-
$ cdrptree/
12
+
$ cdrptree_project/
13
13
$ python -m venv ./venv
14
14
$ source venv/bin/activate
15
15
(venv) $
@@ -23,6 +23,27 @@ $ source venv/bin/activate
23
23
24
24
**Note:** The `-h` or `--help` option provides help on how to use RP Tree.
25
25
26
+
To take a quick test on **RP Tree**, you can use the sample `home/` directory provided along with the application's code and run the following command:
27
+
28
+
```sh
29
+
(venv) $ python tree.py ../hello/
30
+
../hello/
31
+
│
32
+
├── hello/
33
+
│ ├── __init__.py
34
+
│ └── hello.py
35
+
│
36
+
├── tests/
37
+
│ └── test_hello.py
38
+
│
39
+
├── requirements.txt
40
+
├── setup.py
41
+
├── README.md
42
+
└── LICENSE
43
+
```
44
+
45
+
That's it! You've generated a nice directory tree diagram.
46
+
26
47
## Current Features
27
48
28
49
If you run RP Tree with a directory path as an argument, then you get the full directory tree printed on your screen. The default input directory is your current directory.
Copy file name to clipboardExpand all lines: directory-tree-generator-python/source_code_final/README.md
+22-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ To run **RP Tree**, you need to download the source code. Then open a terminal o
9
9
1. Create and activate a Python virtual environment
10
10
11
11
```sh
12
-
$ cdrptree/
12
+
$ cdrptree_project/
13
13
$ python -m venv ./venv
14
14
$ source venv/bin/activate
15
15
(venv) $
@@ -23,6 +23,27 @@ $ source venv/bin/activate
23
23
24
24
**Note:** The `-h` or `--help` option provides help on how to use RP Tree.
25
25
26
+
To take a quick test on **RP Tree**, you can use the sample `home/` directory provided along with the application's code and run the following command:
27
+
28
+
```sh
29
+
(venv) $ python tree.py ../hello/
30
+
../hello/
31
+
│
32
+
├── hello/
33
+
│ ├── __init__.py
34
+
│ └── hello.py
35
+
│
36
+
├── tests/
37
+
│ └── test_hello.py
38
+
│
39
+
├── requirements.txt
40
+
├── setup.py
41
+
├── README.md
42
+
└── LICENSE
43
+
```
44
+
45
+
That's it! You've generated a nice directory tree diagram.
46
+
26
47
## Current Features
27
48
28
49
If you run RP Tree with a directory path as an argument, then you get the full directory tree printed on your screen. The default input directory is your current directory.
0 commit comments