Using python to develop web application

前端 未结 9 791
小鲜肉
小鲜肉 2021-01-30 07:38

I have been doing some work in python, but that was all for stand alone applications. I\'m curious to know whether any offshoot of python supports web development?

Would

9条回答
  •  长情又很酷
    2021-01-30 08:00

    If you really don't want to delve into the frameworks - and you should, I heartily recommend Django or Pylons - there's still need to go down the road of CGI. This is a totally out-of-date technology, not to mention slow and inefficient.

    There is a standard way of building Python web applications, and it's called WSGI. If you want to roll your own web app from scratch, this is absolutely the way to go.

    That said, if you're just starting out, really you should go with one of the frameworks.

提交回复
热议问题