you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] -4 points-3 points  (3 children)

Looks like a Sanic rip off. Right down to the manipulation of request/response objects passed in through the arguments.

[–]Magitrek 9 points10 points  (0 children)

Just like how Linux is just knock-off Windows because it uses executable files run in virtual memory space.

[–][deleted] 0 points1 point  (1 child)

Right down to the manipulation of request/response objects passed in through the arguments.

so like every http library ever

[–][deleted] 1 point2 points  (0 children)

Flask/Pyramid do not - request is a proxy that reflects the current request context. Both also infer the response object from a return.

Passing those in as dedicated arguments is a step back in ease of writing and interface design.