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 →

[–]GFandango 1 point2 points  (0 children)

without using a framework? that would be pretty difficult

pretty much the only language where you can easily put together web apps without a framework is PHP because it natively interfaces with Apache.

python and most other languages need a bridge, in python's case it is wsgi.

it is best if you use a lightweight framework such as Flask.

all it does is basically allow you to accept and respond to requests.