🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

aiotkinter

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiotkinter

An asyncio API for the Tkinter event loop

0.2
PyPI
Maintainers
1

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()

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts