https://github.com/pyapp-kit/fonticon-materialdesignicons7
https://github.com/pyapp-kit/fonticon-materialdesignicons7
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/pyapp-kit/fonticon-materialdesignicons7
- Owner: pyapp-kit
- License: other
- Created: 2023-04-17T16:01:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T21:20:10.000Z (about 1 year ago)
- Last Synced: 2025-04-26T12:02:34.202Z (about 1 year ago)
- Language: Python
- Size: 839 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fonticon-materialdesignicons7
[](https://github.com/pyapp-kit/fonticon-materialdesignicons7/raw/main/LICENSE)
[](https://pypi.org/project/fonticon-materialdesignicons7)
[](https://python.org)
[Material Design Icons 7](https://github.com/Templarian/MaterialDesign-Webfont) extension for [superqt font icons](https://pyapp-kit.github.io/superqt/utilities/fonticon/)
```sh
pip install superqt fonticon-materialdesignicons7
```
```python
from fonticon_mdi7 import MDI7
from qtpy.QtCore import QSize
from qtpy.QtWidgets import QApplication, QPushButton
from superqt.fonticon import icon, pulse
app = QApplication([])
btn2 = QPushButton()
btn2.setIcon(icon(MDI7.fan, animation=pulse(btn2)))
btn2.setIconSize(QSize(225, 225))
btn2.show()
app.exec_()
```
### Dev note
To update this package for new fonticon releases, update the `VERSION = ...` string
in `scripts/bundle.py`, and rerun `python scripts/bundle.py`.