https://github.com/mileswk/texttoolspy
Tools to make responsive and simple items in text.
https://github.com/mileswk/texttoolspy
pip pypi-package python texttools
Last synced: 8 months ago
JSON representation
Tools to make responsive and simple items in text.
- Host: GitHub
- URL: https://github.com/mileswk/texttoolspy
- Owner: MilesWK
- License: mit
- Created: 2024-03-18T19:38:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-04T21:01:19.000Z (almost 2 years ago)
- Last Synced: 2025-05-23T07:26:11.777Z (about 1 year ago)
- Topics: pip, pypi-package, python, texttools
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# texttoolspy 0.0.7

[](https://pypi.org/project/texttoolspy/)
[](https://pypi.org/project/texttoolspy/)
[](https://pypi.python.org/pypi/texttoolspy/)
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 # Import our module
MenuItems = ["Item1","Item2","Item3"] # Get our items
ttp.menu(MenuItems, 1) # Turn our items into a menu!
```
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).