This gist was moved to:
https://github.com/EXL/Stuff/tree/master/Examples/Qt-GradientComboBox
| """ | |
| This gist shows how to run asyncio loop in a separate thread. | |
| It could be useful if you want to mix sync and async code together. | |
| Python 3.7+ | |
| """ | |
| import asyncio | |
| from datetime import datetime | |
| from threading import Thread | |
| from typing import Tuple, List, Iterable |
This gist was moved to:
https://github.com/EXL/Stuff/tree/master/Examples/Qt-GradientComboBox