PyQt animated SVG example
- PyQt5 >= 5.8
python -m pip install git+https://github.com/yjg30737/pyqt-animated-svg-example.git --upgrade
import sys
from PyQt5.QtWidgets import QApplication
from pyqt_animated_svg_example import AnimatedSvgExample
if __name__ == "__main__":
app = QApplication(sys.argv)
r = AnimatedSvgExample()
r.show()
sys.exit(app.exec_())
Result
pyqt_animated_svg_example.mp4
Note: I will use this to something useful later.