Metadata-Version: 1.1
Name: eventlet_inotifyx
Version: 0.0.1
Summary: Thin wrapper around inotifyx to use with eventlet
Home-page: https://github.com/little-arhat/eventlet_inotifyx
Author: Roma Sokolov
Author-email: sokolov.r.v@gmail.com
License: MIT
Description: Eventlet_inotifyx -- Damn simple wrapper
        ========================================
        
        About
        -----
        
        Wrapper around inotifyx to use with eventlet, call to ``get_events`` will block only current eventlet.
        Thanks to Stanis Trendelenburg (@trendels) for `gevent_inotifyx <https://github.com/trendels/gevent_inotifyx>`_.
        
        API
        ---
        
        See `Inotifyx <http://www.alittletooquiet.net/software/inotifyx/>`_ for more info.
        
        Usage
        -----
        
        ::
            import eventlet_inotifyx as inotifyx
        
            fd = inotifyx.init()
            fd.add_watch(fd, path)
            events = inotifyx.get_events()
        
        
        Install
        -------
        
        ~/yourvirtualenv/python setup.py install
        
        pip install eventlet_inotifyx
        
        License
        -------
        
        The MIT License, in LICENSE file.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
