DirecTracer is a Python script that generates a directory structure in both text and Markdown formats. It can be used to visualize the hierarchy of folders and files in a given directory, while also excluding specific folders and file extensions.
Project description
DirecTracer
DirecTracer is a Python script that generates a directory structure in both text and Markdown formats. It can be used to visualize the hierarchy of folders and files in a given directory, while also excluding specific folders and file extensions.
DirecTracer on PyPI
View the DirecTracer package on PyPI by clicking here.
Features
-
save_directory_structure()
function:- Generates a directory structure in text and Markdown formats.
- Supports ignoring specific directories and file extensions.
- Outputs clickable links in the Markdown file for easy navigation.
- Text & loading animations while generating the directory structure.
-
generate_markdown_table()
function:- Generates a Markdown table from the given directory structure.
- Includes columns of Serial Number and clickable links to the files through the file names.
Demonstration Video
Click on the thumbnail below to watch the demonstration video on YouTube.
Usage
Install the DirecTracer package using the following command:
pip install DirecTracer
OR
Clone this repository using the following command:
git clone https://github.com/Hardvan/DirecTracer
cd DirecTracer
pip install .
Call the save_directory_structure
function from the DirecTracer
module to generate the directory structure.
from DirecTracer import save_directory_structure
import os
# Generate the directory structure in text and Markdown formats
save_directory_structure(
root_dir=os.getcwd(),
text_output_file="directory_structure.txt",
markdown_output_file="directory_structure.md",
animation=True
)
View the run.py
file for a complete example.
The save_directory_structure()
function accepts the following parameters:
- root_dir (str): The root directory to start scanning from. Defaults to the current working directory.
- text_output_file (str): The name of the text output file. Defaults to "directory_structure.txt".
- markdown_output_file (str): The name of the Markdown output file. Defaults to "directory_structure.md".
- ignored_directories (list, optional): List of directories to ignore. Defaults to [".git", ".vscode", "venv", ".venv", ".idea", "out"].
- ignored_extensions (list, optional): List of file extensions to ignore. Defaults to [".exe"].
- animation (bool, optional): Enable/Disable the loading animation. Defaults to False.
The generate_markdown_table()
function accepts the following parameters:
- root_dir (str): The root directory to start scanning from. Defaults to the current working directory.
- markdown_output_file (str): The name of the Markdown output file. Defaults to "markdown_table.md".
- animation (bool, optional): Enable/Disable the loading animation. Defaults to False.
- ignored_extensions (list, optional): List of file extensions to ignore. Defaults to [".exe"].
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file DirecTracer-1.0.7.tar.gz
.
File metadata
- Download URL: DirecTracer-1.0.7.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 798109e04c0265edcc64fb3fb73a36208c5629d3c2b4fbea24232c33a90cdb62 |
|
MD5 | ca9c7b46f56e939d4f65364d49b1630b |
|
BLAKE2b-256 | 620f75b4d29441ffdd493205965b2c7446265d0b47e0a9b1eb07ff2795e194b4 |
File details
Details for the file DirecTracer-1.0.7-py3-none-any.whl
.
File metadata
- Download URL: DirecTracer-1.0.7-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e639dafec0a3c115f7a6e97d5beb3d28582b19e15f9ad6d936fa68a33b30ad19 |
|
MD5 | 908b932a74890e52e9a896b7c1ff4423 |
|
BLAKE2b-256 | 9d7583cfe2d285d8e29efafb22f4edafa5be80b774ef049a16abdfeb9bf0ec1c |