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.3.tar.gz (7.5 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for askcli-1.0.3.tar.gz
Algorithm Hash digest
SHA256 1100ef140889d9f3924f2c2b37e4eee30a66b99c38c46b19905d065a947e541b
MD5 4b5fd606d8d82e191b7c3cbca031e05b
BLAKE2b-256 014b74a95d22eda6184ebcf417e8051a7baff935e6337e46228061db3baea0b2

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