Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yjg30737/pyqt-animated-svg-example
PyQt animated SVG example
https://github.com/yjg30737/pyqt-animated-svg-example
desktop-gui-svg pyqt pyqt5 qsvgrenderer qsvgwidget qt qt5 svg svg-desktop
Last synced: 16 days ago
JSON representation
PyQt animated SVG example
- Host: GitHub
- URL: https://github.com/yjg30737/pyqt-animated-svg-example
- Owner: yjg30737
- License: mit
- Created: 2022-06-14T01:27:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-01T03:08:01.000Z (over 2 years ago)
- Last Synced: 2023-03-04T22:17:45.369Z (almost 2 years ago)
- Topics: desktop-gui-svg, pyqt, pyqt5, qsvgrenderer, qsvgwidget, qt, qt5, svg, svg-desktop
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyqt_animated_svg_example
PyQt animated SVG example## Requirements
* PyQt5 >= 5.8## Setup
`python -m pip install git+https://github.com/yjg30737/pyqt-animated-svg-example.git --upgrade`## Tutorial (how to make this by myself)
See the post## Example
```python
import sysfrom PyQt5.QtWidgets import QApplication
from pyqt_animated_svg_example import AnimatedSvgExampleif __name__ == "__main__":
app = QApplication(sys.argv)
r = AnimatedSvgExample()
r.show()
sys.exit(app.exec_())
```Result
https://user-images.githubusercontent.com/55078043/173474471-3e181644-b68a-4929-85f0-3ceea955e72d.mp4
Note: I will use this to something useful later.