Metadata-Version: 1.0
Name: pythrust
Version: 0.7.5
Summary: Python language bindings for Thrust
Home-page: https://github.com/breach/pythrust
Author: Stanislas Polu
Author-email: polu.stanislas@gmail.com
License: MIT
Description: pythrust
        ========
        
        .. _Thrust: https://github.com/breach/thrust
        .. _Python3: https://www.python.org/
        .. _`Thrust Documentation`: https://github.com/breach/thrust/tree/master/docs
        
        Official Python bindings library for Thrust_
        
        Getting Started
        ===============
        
        ``pythrust`` requires Python3_ as it relies on the ``asyncio`` module.
        
        ::
        
            pip3 install pythrust [--user]
        
        
        ::
        
            import pythrust
            import asyncio
        
            loop = asyncio.get_event_loop()
            api = pythrust.API(loop)
        
            asyncio.async(api.spawn())
          
            window = api.window({})
            asyncio.async(window.show())
          
            loop.run_forever()
        
        Status
        ======
        
        Support is only limited to the ``window`` object for now. Contributions are
        welcomed! 
        
        Documentation
        =============
        
        Pending specific pythrust documentation, full API reference is available 
        in the `Thrust Documentation`_
        
        
        .. This is your project NEWS file which will contain the release notes.
        .. Example: http://www.python.org/download/releases/2.6/NEWS.txt
        .. The content of this file, along with README.rst, will appear in your
        .. project's PyPI page.
        
        News
        ====
        
        0.7.5
        -----
        
        *Release date: UNRELEASED*
        
        * Base API mechanism
        * Window bindings
        
        
        
Keywords: thrust application shell framework chromium content module python
Platform: UNKNOWN
