Skip to main content

curses based interactive value input

Project description

Interactive input

Useage

install package

Install by pip

pip install interactive_input

Cording

  1. Import and instantiate.
  2. regist keys,messages,hook functions
  3. Call Ask(), it return key-value pair with value by user input.
  4. If call Ask() more than once, object save previous input. so it can request only the increased.
  5. You can overwrite value data with overwrite=True option.
import interactive_input as iin

def main():
    var iinObj = iin.Object()
    iinObj.AddQ("key1")
    iinObj.AddQ("key2", message="Please Input", hook=base64enc)

    # this will delete value of "key1". (not delete key)
    iinObj.AddQ("key1", message="Overwrited", overwrite=True)

def base64enc(v: str) -> str:
    # you can something for user input. (e.g. hashing, encoding)
    return "encoded: " + v

Run and Using

Ask() will present input UI like below.

Overwrited
Key1: _
Please Input
Key2: 

Can move allow-key or jkl. h function as [BACKSPACE]. (can use BS normally as well) [ENTER] can move next value. If hit [ENTER] with last line, Decide values and go next step.

Bug

  • Can't use non ascii character. it will broken data.
  • Not support very narrow console.

LICENCE

MIT

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

interactive_input-0.5.0-py3-none-any.whl (6.7 kB view hashes)

Uploaded Python 3

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