https://github.com/pyapp-kit/fonticon-materialdesignicons6
https://github.com/pyapp-kit/fonticon-materialdesignicons6
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pyapp-kit/fonticon-materialdesignicons6
- Owner: pyapp-kit
- License: other
- Created: 2021-08-13T14:53:50.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-02-02T21:28:16.000Z (4 months ago)
- Last Synced: 2026-02-20T12:28:04.205Z (4 months ago)
- Language: Python
- Size: 787 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fonticon-materialdesignicons6
[](https://github.com/pyapp-kit/fonticon-materialdesignicons6/raw/main/LICENSE)
[](https://pypi.org/project/fonticon-materialdesignicons6)
[](https://python.org)
[Material Design Icons](https://github.com/Templarian/MaterialDesign-Webfont) extension for [superqt font icons](https://pyapp-kit.github.io/superqt/utilities/fonticon/)
```sh
pip install superqt fonticon-materialdesignicons6
```
```python
from fonticon_mdi6 import MDI6
from qtpy.QtCore import QSize
from qtpy.QtWidgets import QApplication, QPushButton
from superqt.fonticon import icon, pulse
app = QApplication([])
btn2 = QPushButton()
btn2.setIcon(icon(MDI6.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`.