Skip to content
Artem Amirkhanov edited this page Aug 13, 2015 · 4 revisions

Welcome to the pyQSS wiki!

pyQSS is a simple python script which allows embedding Python code in Qt Style Sheets (QSS) files in order to make them easier to maintain, keep consistent and dynamic.

QSS file is enhanced with Python snippets in the form of: @<...>@ and $&lt;...&gt;$ , where @ -- python code will be executed with exec() function (good for defining variables) $ -- python code will be executed with eval() function (good for including results of computations)

Additionally, a small set of utility classes and methods is provided in helpers.py. These should make integration with QSS more seamless and should be easy to extend.

A simple example is given: see file example.pyqss

To run the pyQSS on the example use the following command: "python pyQSS.py example.pyqss example_result.qss"


Copyright Artem Amirkhanov 2014 Distributed under the MIT Software License (See accompanying file LICENSE.txt)

Contact the author: artem.ogre@gmail.com

Clone this wiki locally