An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# texttoolspy 0.0.7

![image](https://d25lcipzij17d.cloudfront.net/badge.svg?id=py&r=r&ts=1683906897&type=6e&v=0.0.7&x2=0)
[![PyPI - License](https://img.shields.io/pypi/l/texttoolspy)](https://pypi.org/project/texttoolspy/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/texttoolspy)](https://pypi.org/project/texttoolspy/)
[![PyPI status](https://img.shields.io/pypi/status/texttoolspy.svg)](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).