Metadata-Version: 2.1
Name: texttoolspy
Version: 0.0.7
Summary: A tool that allows you to create responsive tools in text
Author: MilesWK
Author-email: your_name@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Description-Content-Type: text/markdown
License-File: Licence.txt
Requires-Dist: termcolor
Requires-Dist: colorama
Requires-Dist: readchar
Requires-Dist: cursor

# texttoolspy 0.0.7

Tools to make responsive and simple items in text.

**How to install:**
```bash
pip install texttoolspy
```

Texttools is a module that creates responsive and simple "tools" in your python code. THESE ONLY WORK WHEN RUNNING IN THE TERMINAL. 

Example usage of the `menu()` function:
```python
import texttoolspy as ttp

MenuItems = ["Item1","Item2","Item3"]

ttp.menu(MenuItems, 1)
```
Save and run this code in the command prompt/terminal. 

This allows the user to use arrow keys to choose an item, and then click enter to select the item. When the user selects an item, the selected item will be returned

To see the rest of the features, check out the [wiki](https://github.com/MilesWK/texttoolspy/wiki).
