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

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for askcli-1.0.1.tar.gz
Algorithm Hash digest
SHA256 9f3ed215240c13eef4ca4c07990d90a28ed331cdc6b14dfc90d1f412e9bc718e
MD5 3a9d5832b8d27431663a7de310ce7a39
BLAKE2b-256 8ade98f88a87e0e80ba16e1b41a98eac04b69d1bc9ad94c10bad207193bec60a

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