Bottle is my favorite python web framework, it is lightweight and fast. Those are good qualities, especially when you need to write web services.
However it misses some nice features of other “bigger” framework. One of them is a nice way to handle and validate query parameters.
To make an example, lets suppose that your route function [...]
You are at the archive for the Python category &rarr
No Comments »
Improved performance of Python 3.1
In my previous post (six months ago) I claim about the bad performance of Python 3.0. The first py3k version contained a new I/O library written totally in python that was the main cause of such problems.
Now Python 3.1 present a totally new I/O Library rewritten in c for maximum performance. As promised, I re-execute all [...]
Python 3.0 I/O performance issues
Python 3.0 (aka Python 3000) was released about a week ago.
In the what’s new the python team claim:
The net result of the 3.0 generalizations is that Python 3.0 runs the pystone benchmark around 10% slower than Python 2.5. Most likely the biggest cause is the removal of special-casing for small integers. There’s room for improvement, [...]