Metadata-Version: 2.1
Name: triqt
Version: 1.0.1
Summary: Run the Qt event loop from within the Trio event loop
Home-page: https://github.com/henry232323/triqt
Author: henry232323
License: MIT
Description: # triqt
        Run the Qt event loop from within the [Trio](https://github.com/python-trio/trio) event loop.
        
        A simple way to use trio with your Python Qt application.
        To begin running the app
        ```py
        >>> app = App()
        >>> trio.run(task, instruments=[triqt.Instrument(app)])
        ```
        To invoke an async function from Qt using a Signal
        ```py
        >>> triqt.async_signal(func, args)
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
