Metadata-Version: 2.1
Name: twalk
Version: 1.0.3
Summary: Condense a directory tree into a single txt file or extract it from one
Home-page: https://github.com/Ovsyanka83/twalk
License: MIT
Author: Ovsyanka
Author-email: szmiev2000@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/Ovsyanka83/twalk
Description-Content-Type: text/markdown

# Features
twalk packs an entire directory tree (including files) into a single .txt file, which it then can use to regenerate that directory tree.

# Usage
```
usage: twalk [-h] [-i] [-v] [-V | -s] {pack,unpack} path

Condense a directory tree into a single txt file or extract it from one

positional arguments:
  {pack,unpack}        What to do with the specified path
  path                 path to directory you wish to (un)pack

optional arguments:
  -h, --help           show this help message and exit
  -i, --ignore_binary  Instead of raising an exception when encountering binary files during packing, skip them altogether
  -v, --version
  -V, --verbose
  -s, --silent
```

