/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Timer/pyside_qtimer.py
22 строки
258 B
gil9red
Refactoring. Using black code style
28 июн 2023, 13:07
28 июн 2023, 13:07
ab981f7
Код
Авторство
О чём код?
__author__ = "ipetrash" """Пример таймера.""" import sys from PySide.QtCore import * def say(): print("say!") app = QCoreApplication(sys.argv) t = QTimer() t.setInterval(1000) t.timeout.connect(say) t.start() sys.exit(app.exec_())