|
|
|
|
|
by rdtsc
4961 days ago
|
|
Having looked at both web.py nad Flask, web.py seems more elegant at first glance. I like the mapping of a resource to class and method names to class method.s I am not sure I like Flask's method handling and having to do if ... elif .... else (maybe I just found some bad example, so please correct me). Also url dispatching at the top makes it easier to understand what's going on rather than having it spread to each of the decorators somehow. |
|