2
votes
0answers
67 views

Design for uploading a file and persisting it to a data store

Say we have a spreadsheet (.CSV) being uploaded with static columns | (int) item 1 | (string) item 2 | (int)item 3]| That needs to be persisted to a data store, then sent back to a browser to ...
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 ...