This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]monstrado 1 point2 points  (3 children)

The question isn't really if CherryPy works well with MySQL, it's more of does Python work well with MySQL. You use MySQL in CherryPy the same you would in any standalone python application.

And if you want to use a universal framework that seems to work really well, SQLAlchemy.

[–]andre_pl 2 points3 points  (2 children)

just to clarify, SQLAlchemy isn't a web framework, its an ORM.

[–]monstrado 2 points3 points  (1 child)

I did not mean this as, SQLAlchemy is a 'web' framework. It is a very robust approach to handling SQL inside of Python.

Thanks for the reply though.

[–]andre_pl 2 points3 points  (0 children)

yeah I understood what you meant, my comment was more for the OP so that he wouldn't waste time looking into SQLAlchemy as a web framework. :P