Python library to build pretty command line user prompts with interactive forms and validation
Overall
score
96%
A command-line utility that collects sensitive configuration data from users with proper security measures for password handling.
@generates
def collect_user_credentials():
"""
Collects username and password from the user.
Returns:
dict: A dictionary containing 'username' and 'password' keys.
"""
pass
def collect_api_key():
"""
Collects an API key from the user securely.
Returns:
str: The API key entered by the user.
"""
pass
def collect_database_credentials():
"""
Collects database host and password from the user.
Returns:
dict: A dictionary containing 'host' and 'password' keys.
"""
passProvides interactive command-line prompts with secure password input capabilities.
Install with Tessl CLI
npx tessl i tessl/pypi-questionarydocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10