pytabby

https://secure.travis-ci.org/Prooffreader/pytabby.png https://ci.appveyor.com/api/projects/status/preqq0h4peiad07a?svg=true https://codecov.io/gh/Prooffreader/pytabby/branch/master/graph/badge.svg https://api.codacy.com/project/badge/Grade/dae598fbe5b04b0e90e9e2080bb68c11 https://camo.githubusercontent.com/14a9abb7e83098f2949f26d2190e04fb1bd52c06/68747470733a2f2f626c61636b2e72656164746865646f63732e696f2f656e2f737461626c652f5f7374617469632f6c6963656e73652e737667 https://camo.githubusercontent.com/28a51fe3a2c05048d8ca8ecd039d6b1619037326/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64652532307374796c652d626c61636b2d3030303030302e737667 https://img.shields.io/badge/python-3.6%7C3.7-blue.svg https://img.shields.io/badge/platform-linux--64%7Cwin--32%7Cwin--64-lightgrey.svg https://badge.fury.io/py/pytabby.svg https://readthedocs.org/projects/pytabby/badge/?version=latest Updates

A flexible, non-opinionated, tabbed menu system to interactively control program flow for terminal-based programs. It’s a class with one sole public method which runs in a while loop as you switch tabs (if you want tabs, that is; you’re free not to have any) or if you enter invalid input, and then returns a string based on the value you selected that you can use to control the outer program flow.

Of course, you can run the class itself in a while loop in the enclosing program, getting menu choice after menu choice returned as you navigate a program.

Blog post about why I did this.

Installation

pip install pytabby

Meow.

Documentation

On readthedocs.

Usage

from pytabby import Menu
myconfig = Menu.safe_read_yaml('path/to/yaml')
# or Menu.read_json() or just pass a dict in the next step
mymenu = Menu(myconfig)
result = mymenu.run()

if result == 'result1':
    do_this_interesting_thing()
elif result == 'result2':
    do_this_other_thing()
# etc...

See it in action!

https://www.dtdata.io/shared/pytabby.gif

FAQ

*Why did you make this?

Well, it was one of those typical GitHub/PyPI scenarios, I wanted a specific thing, so I made a specific thing and then I took >10X the time making it a project so that others can use the thing; maybe some people will find it useful, maybe not. I like running programs in the terminal, and this allowed me to put a bunch of utilities like duplicate file finders and bulk file renamers all under one umbrella. If you prefer GUIs, there are plenty of simple wrappers out there,

Why can’t I return handlers?

Out of scope for this project at this time, but it’s on the Wish List. For now, the Menu instance just returns strings which the outer closure can then use to control program flow, including defining handlers using control flow/if statement based on the string returned by Menu.run().

Why are my return values coming in/out strings?

To keep things simple, all input and output (return) values are converted to string. So if you have config['tabs'][0]['items][0]['item_returns'] = 1, the return value will be ‘1’.

Why do ‘items’ have both ‘item_choice_displayed’ and ‘item_inputs’ keys?

To keep things flexible, you don’t have to display exactly what you’ll accept as input. For example, you could display ‘yes/no’ as the suggested answers to a yes or no question, but actually accept [‘y’, ‘n’, ‘yes’, ‘no’], etc.

I have ‘case_sensitive’ = False, but my return value is still uppercase.

case_sensitive only affects inputs, not outputs

What’s up with passing a dict with the tab name as a message to Menu.run()?

The message might be different depending on the tab, and run() only exits when it returns a value when given a valid item input. It changes tabs in a loop, keeping that implementation detail abstracted away from the user, as is right.

Dependencies

  • PyYAML>=5.1

  • schema>=0.7.0

Note

You can have two or more tabs, in which case you will see the tab headers you can switch between above the menu choices, or you can

Indices and tables