Skip to main content

Generate interactive menus in a python script. Like yes/no question and menu action.

Project description

# py-askcli 0.3.0-b

Un petit module qui peut vous servir si vous editer un script et qu'il y a des menu du type :

1. action 1
2. action 2
3. [...]

[Documentation](http://askcli.thivolle-cazat.fr/fr/)

---

## Exemple simple liste numérique

```python
from askcli import Menu
# Création du menu
m = Menu(['action 1','action 2', 'action 3'])

# Affichage et demande de saisie de l'utilisateur
m.launch()

print('_______')
print("vous avez selectione le menu {0} : {1}".format(m.choose, m.get_choosen_text())) ```
```

**resultat**

```
1 - action 1
2 - action 2
3 - action 2
? choix : a
X - Saisie incorrecte, merci de selectiner une valeur dans le champ
? choix : 3
_______
vous avez selectione le menu 3 : action 3
```

## Exemple liste alpha/numérique

```python
from askcli import Menu, Item
items = list()

# creation des items (choix)
choix_action_a = Item('a', 'Action A')
choix_action_b = Item('b', 'Action B')
choix_exit = Item('q', 'Quitter')
items = [choix_action_a, choix_action_b, choix_exit]

# Création du menu
m = Menu(items)

# Affichage et demande de saisie de l'utilisateur
m.launch()

print('_______')
print("vous avez selectione le menu {0} : {1}".format(m.choose, m.get_choosen_text()))
```

**resultat**

```
a - Action A
b - Action B
q - Quitter
? choix : 1
X - Saisie incorrecte, merci de selectionner une valeur dans le champ
? choix : q
_______
vous avez selectione le menu q : Quitter

```

## Exemple Yes/No

```python
from askcli.ask_bool import AskBool
a = AskBool('Are you agree')
a.launch()

# ou
from askcli.ask_bool import AskBool
from askcli.item import YES, NO
a = AskBool('Are you agree', YES, NO)
a.launch()
```

**resultat**

```
? Are you agree [y/n] :
x error key
? Are you agree [y/n] : q
x error key
? Are you agree [y/n] : Y
True
```


===

## TODO liste
- [X] Ordonner la liste
- [X] Module de Yes/no
- [ ] Test
- [ ] DOC

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page