A tool to convert directory contents to JSON
Project description
DTJ (Directory to JSON)
Overview
DTJ (Directory to JSON) is a Python command-line tool, particularly useful for quickly generating and sharing representations of directory structures in a token-efficient manner, making it ideal for interactions with language models like ChatGPT.
Example output
dtj
[
{
"filename": "main.py",
"content": "# Main application file\nimport app\n\napp.run()"
},
{
"filename": "app.py",
"content": "# App module\n\ndef run():\n print('Running the app')"
},
{
"filename": "utils.py",
"content": "# Utility functions\n\ndef helper():\n return 'Helper function'"
}
]
Features
- Convert directory contents to JSON format.
- Include or exclude specific file types.
- Recursive directory parsing.
- Options for output: printing to console, saving to a file, or copying to the clipboard.
Installation
pip install dtj
Usage
Run DTJ from the command line with the following options:
python dtj.py <target-directory> [options]
If no target directory is specified, DTJ will default to the current working directory.
Options:
-ior--include: Specify file extensions to include (e.g.,py,html).-eor--exclude: Specify file extensions to exclude.-oor--output-file: Set the output JSON file name.-ror--recursive: Enable recursive search in directories.-por--print: Print the output using rich formatting.-cor--clipboard: Copy the output to the clipboard.
Example
python DTJ.py myfolder -i py html -o output.json -r
This command will parse all .py and .html files in myfolder recursively and save the JSON output to output.json.
Authors
- Adrian Galilea - Initial work
Acknowledgments
- Hat tip to ChatGPT for assistance with project setup and documentation.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dtj-0.1.2.tar.gz.
File metadata
- Download URL: dtj-0.1.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74db5854c936e14a5a26d9f8dd20442b734490bf3336bd69b9de6225c502d252
|
|
| MD5 |
1da350c10db1e022a397b0567d22b868
|
|
| BLAKE2b-256 |
aefc9d302ba6b3e39a1f2237c63387691944fb0734769cb5fc3708ea5707679d
|
File details
Details for the file dtj-0.1.2-py3-none-any.whl.
File metadata
- Download URL: dtj-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdd349e6c6da6a65721dcfe3555668a5bcba0b69e439ce24319dcabeb86b48e5
|
|
| MD5 |
84f09ad1097411f7b8b4b6aabf4c6a87
|
|
| BLAKE2b-256 |
f75da25fd14937907f2205d6c90a00aa12ba10c30a2e7a83436ff410313c386f
|