Metadata-Version: 2.4
Name: bool_quetion
Version: 0.1.3
Summary: Módulo para preguntar por sí o por no
Author-email: Pablo Alejandro Carravetti <gpablinux@gmail.com>
License: GNU General Public License v3.0
Project-URL: Homepage, https://github.com/pablinet/bool_quetion
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# bool_quetion
## Módulo para preguntar por sí o por no

### Installing
Install on Debian 11 or older:
`pip install bool_quetion`

Install on Debian 12 and later:
`pipx install bool_quetion`

### Using the code in Python 3.x
~~~
names = []
reply = True
while reply:
    element = input ('Enter the full name: ')
    names.append(element)
    for name in names:
        print (name)
    reply = true_false('Do you wish to continue?', ['Yes', 'no'])
~~~
