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 and their contents in a structured and token-efficient manner, making it ideal for interactions with language models like ChatGPT.
Example output
dtj
{
"my_project": {
"__init__.py": "",
"main.py": "# Main application file\nimport app\n\napp.run()",
"app.py": "# App module\n\ndef run():\n print('Running the app')",
"utils": {
"helper.py": "# Utility functions\n\ndef helper():\n return 'Helper function'"
}
}
}
Features
- Convert directory contents to JSON format.
- Include or exclude files using patterns (supports fnmatch style, e.g.,
*.py
,data*
). - Recursive directory parsing.
- Options for output: printing to console, saving to a file, or copying to the clipboard.
Updates
- new JSON format reduces token usage ~30%
Installation
pip install dtj
Usage
Run DTJ from the command line with the following options:
dtj <target-directory> [options]
If no target directory is specified, DTJ will default to the current working directory.
Options:
-t
or--target-file
: Target a single file. This option is mutually exclusive with-i
,-e
, and-r
.-i
or--include
: Patterns to include files. Enclose patterns in quotes to avoid shell expansion (e.g.,'*.py'
,'data*'
).-e
or--exclude
: Patterns to exclude files. Enclose patterns in quotes to avoid shell expansion (e.g.,'*.xml'
,'temp*'
).-o
or--output-file
: Set the output JSON file name.-r
or--recursive
: Enable recursive search in directories. Not valid when targeting a single file.-p
or--print
: Print the output using rich formatting.-c
or--clipboard
: Copy the output to the clipboard.
Example
simple
dtj
Generates an output.json with the content
advanced
dtj 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
.
Using it alongside gptwc
dtj | gptwc
outputs the token count
1337
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
File details
Details for the file dtj-0.1.8.tar.gz
.
File metadata
- Download URL: dtj-0.1.8.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de05b2884c686fc82e3da1e6e43269df285531cd526a23525d481ee63e42a16d |
|
MD5 | c74343d6f0a2a416d103164441183e78 |
|
BLAKE2b-256 | 9f0dc81197d3fb7cb2c7227e4225d1461c5f085ca14968b77d35ec5ffb5e02ac |
File details
Details for the file dtj-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: dtj-0.1.8-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a40bdc27bd7013bdc092ddc08f7ea537999e8467c3e5c20461d92842b11de00 |
|
MD5 | 5c3ab0b7f5d02037f00c1b61062d8980 |
|
BLAKE2b-256 | 2a9de8567a8a2559764843e547b4e2bcbcda356101b5dd05e8aca54583c3a3ab |