Metadata-Version: 1.1
Name: python-specbar
Version: 0.2
Summary: Simple module to build a statusbar for spectrwm.
Home-page: https://bitbucket.org/whitie/python-specbar
Author: Thorsten Weimann
Author-email: weimann@ymail.com
License: MIT
Description: ======================
        Statusbar for spectrwm
        ======================
        
        specbar.py is a small library to use with the spectrwm window manager.
        It has some builtin info functions and is easy extensible using the
        Python decorator syntax.
        
        Example::
        
            # Extending with own info function
            >>> import specbar
            >>> @specbar.info_collector(42)
            ... def get_some_info(num):
            ...     return dict(square=num**2)
            ...
            >>> specbar.loop(format_str='Square info: {square}')
            Square info: 1764
            Shutting down specbar...
            >>>
        
        That's it now your own function get's called every 5 (default) seconds and
        the format string is displayed in the statusbar. The loop (when testing) can
        easily killed by pressing CTRL+C.
        
        Using builtin functions::
        
            >>> import specbar
            >>> specbar.register(specbar.get_gmail_count, 'myuser', 'mysecret')
            >>> specbar.loop('New Mails: {gmail_count:<3}', 15)
        
        Now every 15 seconds your Gmail account is checked for new mail and the
        result is displayed.
        
        Every info function must return a dict. All dicts where merged in a
        defaultdict to have no exception on missing keys. See the source of
        specbar.py for the returned keys of the builtin functions.
        
        In the source distribution an example.py file is included which shows
        the usage of specbar.py.
        
Platform: posix
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: X11 Applications
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Desktop Environment :: Window Managers
Classifier: Topic :: Utilities
