A robust CLI tool to create directory structures from tree-like input.
Project description
House-of-Cards (hoc)
A command-line tool to create real file structures on your system from tree-like representations. Easily replicate directory and file structures from your favorite articles, tutorials, LLM answers, or even from tree -F
outputs from other users! Just copy the tree structure to your clipboard and you're ready to recreate it on your system.
Features
- Parses tree-like representations of file structures like:
./
├── src/
│ ├── main.py
│ └── utils.py
├── tests/
│ └── test_main.py
└── README.md
and creates them in your system.
- Handles directories with or without trailing slashes.
- Compatible with the output of the
tree -F
command. - Can Automatically set appropriate permissions for directories and files.
Installation
Install hoc
from PyPI using pip
:
pip install house-of-cards
or run it using pipx:
pipx run house-of-cards
or even single runs with uvx:
uvx house-of-cards
Usage
hoc
can be used directly from the command line. It reads the file structure string from the clipboard or a file and creates the corresponding directory and file structure at the specified base path.
hoc <base_path> [options]
- <base_path>: The base directory where the structure will be created. (current directory if not provided)
- [Options]: Optional arguments to customize the behavior of the command.
[!NOTE]
If the dir that was chosen as base for the generated file structure does not exist it will be created.
Options
-f, --file FILENAME
: File containing the tree structure. If not provided, the clipboard content will be used.-dp, --dir-permissions PERMISSIONS
: Octal permissions for created directories (e.g., 755).-fp, --file-permissions PERMISSIONS
: Octal permissions for created files (e.g., 644).-h, --help
: Show the help message and exit.
Examples
Example 1: Generating a file structure from the clipboard contents
You can generate a directory structure based on the contents of your clipboard. Just copy the tree-like structure from your favorite tutorial, LLM answer, documentation or the output of a:
`tree -F .`
command and run hoc by just specifying the base path.
hoc /relative/base/path
Try it by copying the following structure to your clipboard:
etc/
├── apache2/
│ ├── apache2.conf
│ ├── envvars
│ ├── magic
│ ├── mods-available/
│ ├── mods-enabled/
│ ├── sites-available/
│ └── sites-enabled/
├── network/
│ ├── if-up.d/
│ ├── if-down.d/
│ └── interfaces
├── passwd
├── shadow
├── group
└── hosts
and running:
hoc ~/hoc_test
or
hoc
If you want to use the current directory as the base path.
Example 2: Creating a Structure from a File
Create a file named structure.txt with the following content:
./
├── apache2/
│ ├── apache2.conf
│ ├── envvars
│ ├── magic
│ ├── mods-available/
│ ├── mods-enabled/
│ ├── sites-available/
│ └── sites-enabled/
├── network/
│ ├── if-up.d/
│ ├── if-down.d/
│ └── interfaces
├── passwd
├── shadow
├── group
└── hosts
Run hoc to create the structure:
hoc /relative/base/path -f structure.txt
Example 3: Setting Permissions
You can set the permissions for directories and files using the -dp
and -fp
options. For example, to set the permissions for directories to 755 and for files to 644, run:
hoc /relative/base/path -dp 755 -fp 644
Example 4: Use it to clone file structures to a remote server or share them with other users
You can use hoc to clone file structures to a remote server by copying the structure using:
tree -F /path/to/directory | pbcopy
or
tree -F /path/to/directory | xclip -selection clipboard
and either share the clipboard content with the other user or save it to a file and send it to them. They can then run hoc on their system to create the same structure or run it on the remote server to create the structure there.
License
This project is licensed under the GNU General Public License version 3. See the LICENSE file for details.
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 house_of_cards-1.0.1.tar.gz
.
File metadata
- Download URL: house_of_cards-1.0.1.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82145b925201df62353f1c5458ec63d0f5593348219a777a9f4108e7b8eb64a9 |
|
MD5 | c7e474580d4322f8866b4f8df2d006c2 |
|
BLAKE2b-256 | 31252f0ed3e8e888dc47d8ba21b2271de0abc5b9219af7864571194cc33c106f |
File details
Details for the file house_of_cards-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: house_of_cards-1.0.1-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20c517901e5a61f3cd550a8f2006a2a092b0ea7680be4aa32ebf0ffff42b71e7 |
|
MD5 | dca866b924dc5c3495f8842a0a021b18 |
|
BLAKE2b-256 | b6de8a0f96eb0b4c6592096f4c7cdc345847f19154efd1767e06d75816e8a404 |