Metadata-Version: 1.1
Name: pyshout
Version: 0.1.1
Summary: Loud python messaging!
Home-page: http://github.com/danbradham/shout
Author: Dan Bradham
Author-email: danieldbradham@gmail.com
License: MIT
Description: .. image:: https://travis-ci.org/danbradham/shout.svg?branch=master
          :target: https://travis-ci.org/danbradham/shout
          :alt: Build Status
        
        .. image:: https://coveralls.io/repos/danbradham/shout/badge.png?branch=master
          :target: https://coveralls.io/r/danbradham/shout?branch=master
          :alt: Coverage Status
        
        .. image:: https://pypip.in/version/pyshout/badge.svg
          :target: https://pypi.python.org/pypi/pyshout/
          :alt: Latest Version
        
        ========
         Shout!
        ========
        
        **Loud Python messaging.**
        
        Shout is a single module providing simple messaging vocabulary for small applications. Shout is NOT a distributed messaging framework.::
        
            from shout import Message, hears, shout
        
            class WhoAreYou(Message):
                pass
        
            @hears(WhoAreYou)
            def lucky_day():
                return "We are..."
        
            @hears(WhoAreYou)
            def dusty_bottoms():
                return "The threeee..."
        
            @hears(WhoAreYou)
            def ned_nederlander():
                return "Amigos!!"
        
            msg = shout(WhoAreYou)
            print("".join(msg.results))
        
            # We are...The threeee...Amigos!!
        
        
        Why Shout
        =========
        
        * Decoupling of a GUI and it's behavior
        
          * PySide/PyQt signals are bound to widgets making it harder to decouple widgets. You have to explicitly connect each widget's signals with their slots which could live deep in a hierarchy of widgets.
        
          * Shout Messages are classes themselves, readily available to all other objects in their scope. Shout from inside, outside, top, or bottom of a widget hierarchy, Messages will still get to where they need to go!
        
        * Shout is a single module, easily included with any package.
        
        * It's easy and fun to use.
        
        
        Get Shout
        =========
        
        Shout is available through the python package index as **pyshout**.::
        
            pip install pyshout
        
        * Note that only the python package name is pyshout, the module it installs is simply **shout**.
        
        
        Documentation
        =============
        
        For more information visit the `docs <http://shout.readthedocs.org>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
