examples.rst 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  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. - `A streamlit application <https://github.com/takluyver/pynsist/tree/master/examples/streamlit>`_
  16. Real-world examples
  17. -------------------
  18. These may illustrate more complex uses of pynsist.
  19. - `Mu <https://codewith.mu/>`_ is a beginner-friendly code editor for Python,
  20. written with PyQt5.
  21. - The author's own application, `Taxonome <https://bitbucket.org/taxonome/taxonome/src>`_,
  22. is a Python 3, PyQt4 application for working with scientific names for species.
  23. - `Spreads <https://github.com/jbaiter/spreads/tree/windows>`_ is a book scanning tool,
  24. including a tkinter configuration system and a local webserver. Its use of
  25. pynsist (see ``buildmsi.py``) includes working with setuptools info files.
  26. - `InnStereo <https://github.com/tobias47n9e/innsbruck-stereographic>`_ is a GTK 3
  27. application for geologists. Besides pygi, it uses numpy and matplotlib.