examples.rst 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. Example applications
  2. ====================
  3. Simplified examples
  4. -------------------
  5. The repository contains a number of simple examples for building applications
  6. with different frameworks:
  7. - `A console application <https://github.com/takluyver/pynsist/tree/master/examples/console>`_
  8. - `A PyQt5 application <https://github.com/takluyver/pynsist/tree/master/examples/pyqt5>`_
  9. - `PyQt5 with QML <https://github.com/takluyver/pynsist/tree/master/examples/pyqt5_qml>`_
  10. - `PyQt5 with OpenCV <https://github.com/takluyver/pynsist/tree/master/examples/pyqt5_opencv>`_
  11. - `A PyGI (or PyGObject) application with Numpy and Matplotlib (64 bit, Python 3.4) <https://github.com/takluyver/pynsist/tree/master/examples/pygi_mpl_numpy>`_
  12. - `A pygame application <https://github.com/takluyver/pynsist/tree/master/examples/pygame>`_
  13. - `A pyglet application <https://github.com/takluyver/pynsist/tree/master/examples/pyglet>`_
  14. - `A pywebview application <https://github.com/takluyver/pynsist/tree/master/examples/pywebview>`_
  15. Real-world examples
  16. -------------------
  17. These may illustrate more complex uses of pynsist.
  18. - `Mu <https://codewith.mu/>`_ is a beginner-friendly code editor for Python,
  19. written with PyQt5.
  20. - The author's own application, `Taxonome <https://bitbucket.org/taxonome/taxonome/src>`_,
  21. is a Python 3, PyQt4 application for working with scientific names for species.
  22. - `Spreads <https://github.com/jbaiter/spreads/tree/windows>`_ is a book scanning tool,
  23. including a tkinter configuration system and a local webserver. Its use of
  24. pynsist (see ``buildmsi.py``) includes working with setuptools info files.
  25. - `InnStereo <https://github.com/tobias47n9e/innsbruck-stereographic>`_ is a GTK 3
  26. application for geologists. Besides pygi, it uses numpy and matplotlib.