Template Repository available here.
Tentatively calling this project "Cutesy_MVC." I'll probably call the command-line utility component something masculine like "cutify." Taylor Otwell doesn't have anything on my ability to name things.
Literally developing this at least in the preliminary stages on Replit on my phone. Just would like to practice python when I have the time, and also would be cool if the end product was something useful to me.
Taking inspiration from a favorite project of mine: Laravel. Would also like to practice threading a bit, so my idea is to basically have a client-server model where the V of the MVC is on the main thread and the M and C of MVC are on a second thread. The View/User Interface library or system is really up to the user, this framework is agnostic. The Client
module enables communication between a server thread (that runs most of the other framework systems) and the main thread where the UI lives. These components on the main thread will generate request objects that are sent via queue to the server thread, which eventually sends back a response object via another queue.
Obviously being a solo project that draws inspiration from a major project, I am not implementing all of the features of Laravel. For example, I am creating systems to migrate, query, and model data from SQLite, but I am not building support for any other database systems.
To run the framework's tests (i.e., not user-defined tests), run the project as a module from the directory above repo.
python -m Cutesy_MVC
Markdown formatted documentation files can be found in the docs folder.
3 - Cutify Command Line Utility