2
votes
0answers
164 views

How can I simplify this basic MVC application?

I'm still learning Python, so I tried to build a basic MVC app using wxPython and pubsub. While it seems to work fine, the code seems to be getting out of hand. In model I decided against using ...
1
vote
2answers
83 views

isinstance as an alternative to polymorphism

I have a program that displays colorful shapes to the user. It is designed so that it is easy to add new shapes, and add new kinds of views. Currently, I have only two shapes, and a single text-based ...
1
vote
0answers
98 views

Guidance on SoC and passing data between GUI instances (MVC pattern)

I'm fairly new to Python and currently building a small application to record loans of access cards to people in a company. I'm using wxPython for the GUI and SQLAlchemy for the CRUD. I'm loosely ...