Metadata-Version: 2.1
Name: additional-urwid-widgets
Version: 0.2
Summary: Some (in my opinion) useful widgets that extend the python library 'urwid'.
Home-page: https://github.com/AFoeee/additional_urwid_widgets
Author: Adrian Föhling
Author-email: a.foehling@web.de
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Widget Sets
Description-Content-Type: text/markdown

# additional_urwid_widgets

The python library [`urwid`](http://urwid.org/index.html) contains many basic widgets, but lacks (in my opinion) "more specialized" widgets, such as a date picker.

This project contains such "more specialized" widgets.  

See the corresponding wiki entries of the widgets for more information.

## Installation
The project can be installed via [pip](https://pypi.org/project/additional-urwid-widgets/).

To do so, execute `pip install additional-urwid-widgets` in the terminal.

## Widgets
* [**DatePicker**](https://github.com/AFoeee/additional_urwid_widgets/wiki/DatePicker)  
A (rudimentary) date picker.

* [**IndicativeListBox**](https://github.com/AFoeee/additional_urwid_widgets/wiki/IndicativeListBox)  
A [`urwid.ListBox`](http://urwid.org/reference/widget.html#listbox) with additional bars to indicate hidden list items.

* [**IntegerPicker**](https://github.com/AFoeee/additional_urwid_widgets/wiki/IntegerPicker)  
A selector for integer numbers.

* [**SelectableRow**](https://github.com/AFoeee/additional_urwid_widgets/wiki/SelectableRow)  
Wraps [`urwid.Columns`](http://urwid.org/reference/widget.html#columns) to make it selectable and adds behavior.


