Question

What are good python libraries for the following needs:

  • MVC
  • Domain Abstraction
  • Database Abstraction
  • Video library (just to create thumbnails)

I already know that SQLAlchemy is really good for Database Abstraction so don't bother with it unless you want to suggest a better one.

Edit: This might seem stupid to mention but I'm talking about MVC for GUI and not for web, just mentioning for clarification

Edit: Also does the MVC part contain GUI part or can I use a separate library for GUI like PyQt

Was it helpful?

Solution

Have you tried wxWidgets (well, wxPython in fact)?

It has nice documentation (which is always a good thing), and allows creating code in MVC manner. It's just the GUI library, but allows some simple image manipulation (if it's not good enough for you try using Python version of ImageMagick). It uses native controls, so the application looks native on the OS it's being ran.

PyQt on the other hand has even better docs than wxWidgets or wxPython, but I could never get used to the look&feel of its GUI (it's custom, so it doesn't look native on any OS). Because riverbankcomputing couldn't agree with nokia on a license nokia started a project called PySide which is a LGPL version of the Qt-bindings. It's supposed to be finished in early 2010.

OTHER TIPS

django is a pretty good mvc framework with an orm

You could go with http://turbogears.org/ . Its like Django, but uses "of the shelves" existing modules.

TurboGears 2 is the built on top of the experience of several next generation web frameworks including TurboGears 1 (of course), Django, and Rails. All of these frameworks had limitations which were frustrating in various ways, and TG2 is an answer to that frustration. We wanted something that had:

  • Real multi-database support
  • Horizontal data partitioning (sharding)
  • Support for a variety of JavaScript toolkits, and new widget system to make building ajax heavy apps easier
  • Support for multiple data-exchange formats.
  • Built in extensibility via standard WSGI components
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top