tessl install tessl/pypi-questionary@2.1.0Python library to build pretty command line user prompts with interactive forms and validation
Agent Success
Agent success rate when using this tile
96%
Improvement
Agent success rate improvement when using this tile compared to baseline
1x
Baseline
Agent success rate without this tile
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.