Metadata-Version: 1.0
Name: SimpleMenus
Version: 0.6
Summary: A few simple methods to create interactive console applications.
Home-page: http://www.pulsedo.com/free/simplemenus
Author: Jonas Pfannschmidt
Author-email: jonas.pfannschmidt@gmail.com
License: MIT license http://www.opensource.org/licenses/mit-license.php
Download-URL: http://www.pulsedo.com/free/simplemenus/download/SimpleMenus-0.6.zip
Description: SimpleMenus is a small and simple python package for creating interactive 
        console applications. It allows to prompt the user for strings, integers,
        dates, booleans, lets him choose between various options and offers 
        lightweight menus.
        
        I use it for small utilities and prototypes whenever I need a little bit of
        interaction with the user. For more complex applications you should look at 
        something like curses instead (http://docs.python.org/library/curses.html).
        
        Examples:
        	# print birthday
        	print(get_date("Enter your birthday"))
        
        	# print selection
        	print(get_from_list(['One', 'Two', 'Three']))
        
        	# return if user doesn't want to continue
        	if not get_boolean('Continue?'):
        		return
        
        
        You can find more in the examples and test direcories and an API documentation at doc/simplemenus.html.
        
        Tested with Python 2.7.5 and Python 3.3 on Windows and Linux.
        
        Webpage: http://www.pulsedo.com/free/simplemenus
        
        Copyright (c) 2013, Jonas Pfannschmidt
        Licensed under the MIT license http://www.opensource.org/licenses/mit-license.php
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Software Development :: Libraries :: Python Modules
