Metadata-Version: 2.1
Name: pytextwrap
Version: 1.0.0
Summary: Wraps text without breaking words.
Home-page: https://github.com/tusharsadhwani/pytextwrap
Author: Tushar Sadhwani
Author-email: tushar.sadhwani000@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# pytextwrap

Wraps your text files to a given width, without breaking words.

It reads a text file, and wraps all text in it to a line width of 72 characters.

I use it to format AoC problems to python docstrings for [my solutions repo][1].

I also use it for [Daily Byte][2].

## Installation

```console
pip install pytextwrap
```

## Usage

```console
textwrap path/to/file
```

[1]: https://github.com/tusharsadhwani/aoc2020
[2]: https://github.com/tusharsadhwani/daily_byte


