A tool to convert directory contents to YAML.
Project description
DTY (Directory-to-YAML)
Overview
DTY (Directory-to-YAML) is a Python command-line tool designed for quickly generating representations of directory structures and their contents in YAML format. This tool is especially useful for structuring directory data in a token-efficient manner, making it ideal for interactions with language models like ChatGPT.
Example output
dty
my_project:
__init__.py: ""
main.py: |
# Main application file
import app
app.run()
app.py: |
# App module
def run():
print('Running the app')
utils:
helper.py: |
# Utility functions
def helper():
return 'Helper function'
Features
- Convert directory contents to YAML 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.
Installation
pip install dty
Usage
Run DTY from the command line with the following options:
dty <target-directory> [options]
If no target directory is specified, DTY 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 YAML 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
dty myfolder -i '*.py' '*.html' -o output.yaml -r
This command will parse all .py
and .html
files in myfolder
recursively and save the YAML output to output.yaml
.
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 dty-0.1.1.tar.gz
.
File metadata
- Download URL: dty-0.1.1.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c08e5c7aaf2aad5ffa4f4951e2bb1072181496da6790270e3708f9353ecb361d |
|
MD5 | 4cb8bdc4976ab61667130687a4714791 |
|
BLAKE2b-256 | 315be908afb1d5303441ff2dfd3a21690f8fad30334040082b94214d6ae04892 |
File details
Details for the file dty-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: dty-0.1.1-py3-none-any.whl
- Upload date:
- Size: 4.9 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 | d1b82eb5bfb12af771487e3934932ff2047d19a107b0d7b009f97c11e2210f24 |
|
MD5 | a8a4d482597895d7258ad693c17a6f0d |
|
BLAKE2b-256 | 47c98dab2c7273c5bb17e5b57778be27fad2f253bcfe655c3845f23c07a02263 |