Metadata-Version: 1.1
Name: aiotkinter
Version: 0.2
Summary: An asyncio API for the Tkinter event loop
Home-page: https://github.com/montag451/aiotkinter
Author: montag451
Author-email: montag451 at laposte.net
License: UNKNOWN
Description: This module provide an asyncio API for the the Tkinter event loop
        
        License: MIT (see LICENSE)
        
        Requirements
        ============
        
        -  Unix platform (it doesn't work on Windows because of the lack of
           **Tcl\_CreateFileHandler** on this platform)
        -  Python 3.3 + asyncio or Python >= 3.4
        
        Installation
        ============
        
        .. code:: sh
        
            python setup.py install
        
        Usage
        =====
        
        **aiotkinter** expose an event loop policy (which based on the default
        event loop policy of **asyncio**) so the only thing you have to do is to
        set the global event loop policy with an instance of
        **TkinterEventLoopPolicy**:
        
        .. code:: python
        
            import asyncio
            import aiotkinter
        
            asyncio.set_event_loop_policy(aiotkinter.TkinterEventLoopPolicy())
            loop = asyncio.get_event_loop()
            loop.run_forever()
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
