A simple library for creating beautiful interactive prompts.
Project description
✨ A simple library for creating beautiful interactive prompts.
import survey
name = survey.input('Username: ')
password = survey.password('Password: ')
actions = ('Call', 'Text', 'Exit')
index = survey.select(actions, 'Chose an action: ')
# if index == 0: elif index == 1: else: ...
contacts = ('Squig', 'Zelan', 'Momo', 'Hamberg', 'Evan', 'Vonnie', 'Dwalon', 'Hacen')
indexes = survey.select(contacts, 'Select recipients: ', multi = True)
message = survey.input('Type messsage: ', multi = True)
confirm = survey.confirm(f'Message is {len(message)} characters long. Send? ', default = True)
Features
Pythonic: friendly interface wrapped around simple functions.
Lightweight: independent of any other prompt or visual libraries.
Adaptable: works with any string formatting and window size.
Extensive: packed with tweaks and features for any situation.
Installing
pip3 install survey
Links
Check out the documentation for more details.
Greatly inspired by AlecAivazis’s GoLang library.
Suggestions and contributions are greatly appreciated!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
survey-2.1.0.tar.gz
(17.4 kB
view details)
File details
Details for the file survey-2.1.0.tar.gz
.
File metadata
- Download URL: survey-2.1.0.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4478009cff0e774795bdd9d6662d4a2eef0eb3347278ed52a902e8d7956c179 |
|
MD5 | b4d481958b5061b3dc8b3b557a441781 |
|
BLAKE2b-256 | 9e7654ef8c9f4584112bae3a27a95ef6d16c60abb2d04b433516c5f588eaf83e |