examples.rst 1.4 KB

123456789101112131415161718192021222324252627
  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 tkinter application <https://github.com/takluyver/pynsist/tree/master/examples/tkinter>`_
  9. - `A PyQt4 application <https://github.com/takluyver/pynsist/tree/master/examples/pyqt>`_
  10. - `A PyGTK application <https://github.com/takluyver/pynsist/tree/master/examples/pygtk>`_
  11. - `A PyGTK application including Numpy and Matplotlib (32 bit, Python 2.7) <https://github.com/takluyver/pynsist/tree/master/examples/pygtk_mpl_numpy>`_
  12. - `A PyGTK application including Numpy and Matplotlib (64 bit, Python 3.4) <https://github.com/takluyver/pynsist/tree/master/examples/pygi_mpl_numpy>`_
  13. - `A pygame application <https://github.com/takluyver/pynsist/tree/master/examples/pygame>`_
  14. Real-world examples
  15. -------------------
  16. These may illustrate more complex uses of pynsist.
  17. - The author's own application, `Taxonome <https://bitbucket.org/taxonome/taxonome/src>`_,
  18. is a Python 3, PyQt4 application for working with scientific names for species.
  19. - `Spreads <https://github.com/jbaiter/spreads/tree/windows>`_ is a book scanning tool,
  20. including a tkinter configuration system and a local webserver. Its use of
  21. pynsist (see ``buildmsi.py``) includes working with setuptools info files.