Metadata-Version: 2.1
Name: threaded_mvc
Version: 0.0.2
Summary: Threaded model view controller classes.
Home-page: https://github.com/Galen-dp/threaded_mvc
Author: Doug Peterson
Author-email: doug@notre-chateau.com
License: BSD license
Keywords: threaded_mvc
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
License-File: LICENSE
License-File: AUTHORS.rst

============
threaded_mvc
============


.. image:: https://img.shields.io/pypi/v/threaded_mvc.svg
        :target: https://pypi.python.org/pypi/threaded_mvc

.. image:: https://img.shields.io/travis/Galen-dp/threaded_mvc.svg
        :target: https://travis-ci.com/Galen-dp/threaded_mvc

.. image:: https://readthedocs.org/projects/threaded-mvc/badge/?version=latest
        :target: https://threaded-mvc.readthedocs.io/en/latest/?version=latest
        :alt: Documentation Status




Threaded Model-View-Controller Design Pattern package for GUI & TUI programs.


* Free software: BSD license
* Documentation: https://threaded-mvc.readthedocs.io.

Introduction
------------
This is a solution to a common problem with MVC architecture: How do we
keep the View responsive when the model is i/o bound.

We do this by placing the model in its own thread, and using message
queues between the Controller and Model.

As per the definition of the MVC design pattern:

1) The model knows nothing about the view or the controller.
2) The view knows nothing about the controller or the model.
3) The controller knows everything about both the model and the view.
4) Contoller  - starts or attaches to view & model
5) model      - signals events to controller which updates view
6) controller - sets model states when necessary.


Features
--------
* TODO


Credits
-------
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

0.0.1 (2022-03-17)
------------------

* First release on PyPI.


