Skip to main content

A package that wrap the input function with validation

Project description

A Python library to simplify the input from user

This library is a wrapper arround the input method. It allows to very the input according to the selected type, lower or upper bound provided.

Instalation

pip install FastInput

Usage Asking for an integer value between 0 and 4:

import FastInput as fi

yourChoice = fi.input_with_validation("Provide your id", InputType.INTEGER,False,0,4))

Asking for a string:

import FastInput as fi

yourChoice = fi.input_with_validation("What is your name", InputType.STRING,False))

Asking for a user validation:

import FastInput as fi

yourChoice = fi.input_for_confirmation("Do you agree?[Y/n]", True))

Asking for a choice in a list:

import FastInput as fi

list=[1,2,"test",False]
yourChoice = input_within_list(list)

Result

$> python FastInput/fast_input.py
What is your user?

Your answer cannot be empty.
Alex
Provide your id
( >= 0 )
-1
Wrong choice. Please provide an answer >= 0
0
Provide your id2
( <= 10 )
12
Wrong choice. Please provide an answer <= 10
a
Wrong choice type. Please provide an answer of type : integer

Your answer cannot be empty.
5
Provide your id3 any integer
w
Wrong choice type. Please provide an answer of type : integer
123
InitForm(user='Alex', id=0, id2=5, id3=123)
Do you like this app?
Yes

Choose a value among : [1, 2, 'test', False]
4
Your choice is not in the list
Choose a value among : [1, 2, 'test', False]
Alex
Your choice is not in the list
Choose a value among : [1, 2, 'test', False]
test

Choose a value among :
  1. 1
  2. 2
  3. test
  4. True
( >= 1 and <= 4 )
1

Project details


Release history Release notifications | RSS feed

This version

0.3

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

FastInput-0.3.tar.gz (4.9 kB view details)

Uploaded Source

File details

Details for the file FastInput-0.3.tar.gz.

File metadata

  • Download URL: FastInput-0.3.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for FastInput-0.3.tar.gz
Algorithm Hash digest
SHA256 9e1dc4dc7e599bc00ec224f8f77d68035caa74ab71d47d144fc700ca38f3f5a4
MD5 f1a3353dc6b418c4e105db2208d7112f
BLAKE2b-256 2c24412a2ec17b6fd4d3efadb55877b502dbb72f631fab75253c6fd7a6ea09a3

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