Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/takluyver/pyqt-app-template
Cookiecutter template for a PyQt4 application
https://github.com/takluyver/pyqt-app-template
Last synced: about 2 months ago
JSON representation
Cookiecutter template for a PyQt4 application
- Host: GitHub
- URL: https://github.com/takluyver/pyqt-app-template
- Owner: takluyver
- Created: 2014-08-04T22:27:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-04T23:17:34.000Z (over 10 years ago)
- Last Synced: 2024-10-11T19:19:23.409Z (3 months ago)
- Language: Python
- Size: 691 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
This is a template for a PyQt4 application
To get started::
pip install cookiecutter
cookiecutter https://github.com/takluyver/pyqt-app-templateThis will prompt you for some values, and create a new directory using the
repo_name you give it. Inside that directory, you can do.. code:: python
./compile_ui.py # Compile the UI
python3 -m myapp # Run the applicationTo modify the UI, use Qt Designer, saving files in ``package/ui/``, and rerun
``./compile_ui.py`` to recompile the files. You should keep the .ui files in
version control; it's up to you whether you keep the generated .py files in
there as well.