Skip to main content

Toolset for interactive command-line applications

Project description

Toolset for interactive command-line applications

inter is a utility for providing an interactive command line interface. You can use it to ask question and coerce values into ints, floats, boolean values, and you have a number of options like specifying integer and floating point constraints, setting the color of the question text, and specifying default values.

Installation

inter is installable through pip. To install to your system, just run:

$ sudo pip install inter

or to install from source, run:

$ python setup.py install

Usage

inter is easy to use in your python scripts. Check the following example:

from inter import Interact

cli = Interact()

# Takes a string from the user and strips the whitespace, and lowercase it.
first_name = cli.ask_str('enter your first name', strip=True, lower=True)

# title=True will take input like "hey there" and return "Hey There"
full_name = cli.ask_str('enter your full name', strip=True, title=True)

# Prints "whats your age: " and gives an error message regarding min and max
# if the user fails to enter a value within that range.
age = cli.ask_int('whats your age', min=1, max=120)

# Prints "are you in the US [yn]: "
in_the_us = cli.ask_bool('are you in the US')

# Prints "are you a developer [Yn]: "
# If user provides no input, default True is returned. Otherwise it checks for
# "yes", "y", "true", or "no", "n", "false" and if it receives none of those,
# it will print an error message in red.
developer = cli.ask_bool('are you a developer', default=True)

# Asks for a path to a file that doesn't exist and is creatable
new_path = cli.ask_path('path to file ill create', exists=False, creatable=True)

# Asks for path to a directory that it can add files inside
inside_dir = cli.ask_path('path to dir i will write in', is_dir=True, writeable=True)

# Asks for path to a file it can read but cant write to and exists as a file
readable = cli.ask_path('i can read but not write this file', readable=True,
                        writeable=False, is_file=True)

Release Notes

0.1.4:

bugfixes for ask_str default and more python 2.7 compatibility

0.1.3:

Make python 2.7 compatible with print as function

0.1.2:

Add Interact.print and Interact.exit

0.1.1:

Fix path stuff

0.1.0:

Alpha release with usable int/float/bool/str tooling.

0.0.1:

Project created

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

inter-0.1.5.tar.gz (7.2 kB view details)

Uploaded Source

File details

Details for the file inter-0.1.5.tar.gz.

File metadata

  • Download URL: inter-0.1.5.tar.gz
  • Upload date:
  • Size: 7.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for inter-0.1.5.tar.gz
Algorithm Hash digest
SHA256 974c5a96d7167fc1eca850a6c1dc877a4c979702258df0f5fc6e3d689ef44c90
MD5 bd12cbd82242206e3e0d9b113fe4e57e
BLAKE2b-256 bb0236825d5f19053954508f7d852e5f4210237b266dd46b3941cc9710ea67f9

See more details on using hashes here.

Supported by

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