Skip to main content

🎯 Simple and safe console input validation for Python

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.3.tar.gz (6.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.3-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: askput-0.1.3.tar.gz
  • Upload date:
  • Size: 6.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.3.tar.gz
Algorithm Hash digest
SHA256 7c38a0537132f18f0c9864acd4e3cc2b5cbaba88ad2a4fafe90cb0ed43c2cbce
MD5 58055d995dcaf0982fa2ed1b6885ff02
BLAKE2b-256 24a55dd9872f2ba1bf1c733f3301afc6201d4fd5f3ce09121838489e2ded5a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: askput-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 5.1 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3d2fec50d67d5bd50ad7810af292ee8503a4db06692d355f034098217ebcf985
MD5 ece4e5be70ee480f9720fc3fc9087832
BLAKE2b-256 b9b7be62216fc4c7505c0d7ea40e31592d6ad214253cb62d25c7c4ee0c45aba4

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