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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

askcli-1.0.2.tar.gz (7.5 kB view details)

Uploaded Source

File details

Details for the file askcli-1.0.2.tar.gz.

File metadata

  • Download URL: askcli-1.0.2.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for askcli-1.0.2.tar.gz
Algorithm Hash digest
SHA256 15ad4b915cedba314132cbb5ad6266eadaf8015fb4368b6b8b19a3261794ca0a
MD5 edb94444ac83132336bb08a77448b2bb
BLAKE2b-256 5bbfaae9767de81811c48d178c5b85e1ad09785dbd2244dddbb9e019ea124678

See more details on using hashes here.

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