Skip to main content

Simple and safe console input validation

Project description

askput

askput is a lightweight Python library for safe, validated, and interactive console input.

It removes repetitive input-validation logic and helps you build clean, readable CLI programs with minimal effort.


Why askput?

Python’s built-in input():

  • always returns strings
  • provides no validation
  • leads to repeated try / except blocks

askput offers a clean abstraction over these problems while staying simple and dependency-free.


Features

  • Integer and float input with bounds
  • String length validation
  • Email validation
  • Secure password input
  • Strong password rules
  • Yes/No confirmations
  • Phrase-based confirmation for dangerous actions
  • Menu-based choice selection
  • Regex (pattern) based input
  • Multiple values input
  • Fully tested with pytest
  • Zero external dependencies

Installation

pip install askput

Usages

Basic Usage

from askput import ask

age = ask.int("Enter age", min=18)
price = ask.float("Enter price", min=0)
name = ask.string("Enter name", min_len=2)
email = ask.email("Enter email")

print(age, price, name, email)

Passwords and Confirmations

from askput import ask

age = ask.int("Enter age", min=18)
price = ask.float("Enter price", min=0)
name = ask.string("Enter name", min_len=2)
email = ask.email("Enter email")

print(age, price, name, email)
from askput import ask

password = ask.password("Enter password")
strong_password = ask.password_strong("Create strong password")

confirm = ask.confirm("Continue?")
delete = ask.confirm_phrase("Type DELETE to continue", "DELETE")

Choice / Menu Input

from askput import ask

role = ask.choice(
    "Select role",
    ["Admin", "User", "Guest"]
)

print("Selected role:", role)

##Pattern and Multiple Input

from askput import ask

code = ask.pattern("Enter code", r"^[A-Z]{3}\d{3}$")
tags = ask.multi("Enter tags (comma separated)")

print(code, tags)

Example: Simple CLI Flow

from askput import ask

role = ask.choice("Role", ["Admin", "User"])
age = ask.int("Age", min=18)
password = ask.password_strong("Password")

if ask.confirm("Submit form?"):
    print("Form submitted")

Testing

askput is fully tested using pytest.

pytest

All tests are before every release.

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

askput-0.1.2.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

askput-0.1.2-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file askput-0.1.2.tar.gz.

File metadata

  • Download URL: askput-0.1.2.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.7

File hashes

Hashes for askput-0.1.2.tar.gz
Algorithm Hash digest
SHA256 30323a6c7984a7cde4aba53eb11a26257f25d1a7f181ef14d8096d687a679039
MD5 962f77bb264cabd2925f928696c7e514
BLAKE2b-256 1aa37550ee7994e68dccee953ab22b3ad3d6d9ac548e391ad8a04acac9ad0d0b

See more details on using hashes here.

File details

Details for the file askput-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: askput-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.7

File hashes

Hashes for askput-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0ab5ddebe8b36c42fbe81aba2437e445d6e266cc9ba416589f542e31c9648bdd
MD5 eb31a8f6872e9eec201dd5862bf81240
BLAKE2b-256 487571edf31ecf18ef9facec00e5255f450a5fb0f611d1d45f2de0248bb0e22a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page