Metadata-Version: 2.0
Name: widdy
Version: 0.2.10
Summary: urwid wrapper for rapid shell-ui prototyping
Home-page: https://github.com/ubunatic/widdy
Author: Uwe Jugel
Author-email: uwe.jugel@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/ubunatic/widdy
Project-URL: Bug Reports, https://github.com/ubunatic/widdy/issues
Project-URL: Funding, https://github.com/ubunatic/widdy
Project-URL: Say Thanks!, https://saythanks.io/to/ubunatic
Project-URL: Source, https://github.com/ubunatic/widdy
Keywords: urwid,prototyping,widgets,ohlc,ui,apps,console
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Provides-Extra: dev
Requires-Dist: future
Requires-Dist: requests
Requires-Dist: trollius
Requires-Dist: typing
Requires-Dist: urwid
Provides-Extra: dev
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: pasteurize; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: twine; extra == 'dev'

[![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/ubunatic)

widdy
=====

Widdy widdy widgets for rapid prototyping of [urwid](http://urwid.org) based console apps.

Installation
------------

    pip install widdy

Usage
-----
Read the [examples](https://github.com/ubunatic/widdy/tree/master/widdy/examples)
or try the demo apps:

    widdy chuck     # chuck norris joke reader
    widdy counter   # fun with text tables
    widdy all       # run all available demos

Development
-----------
First clone the repo.

    git clone https://github.com/ubunatic/widdy
    cd widdy

Then install the cloned version and install missing tools.

    make             # clean and run all tests
    make install     # install the checked-out dev version
    make transpiled  # transpile Py3 to Py2

You may need to install some tools and modules, i.e., `flake8`, `pytest-3`, `twine`, `urwid`, and maybe others.

[Pull requests](https://github.com/ubunatic/widdy/pulls) are welcome!


