{"library":"qstylizer","title":"Qstylizer","description":"Qstylizer is a Python library that generates Qt stylesheets (QSS) programmatically. It provides a clean, Pythonic API for creating and composing styles for PyQt4/5 and PySide1/2 applications. Current version 0.2.4, with irregular releases; last release in 2018.","language":"python","status":"maintenance","last_verified":"Fri May 01","install":{"commands":["pip install qstylizer"],"cli":null},"imports":["from qstylizer.style import StyleSheet"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from qstylizer.style import StyleSheet\n\n# Create a stylesheet for a QPushButton\nss = StyleSheet()\nss.QPushButton.setBackgroundColor('red')\nss.QPushButton.setColor('white')\nss.QPushButton.setBorderRadius('5px')\n\n# Compile to QSS string\nqss = ss.toString()\nprint(qss)\n# Output: QPushButton { background-color: red; color: white; border-radius: 5px; }","lang":"python","description":"Create a stylesheet object, apply properties to widgets, and compile to QSS string.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}