Is it compatible with Cherrypy Python3?

Does cherrypy support Python3 yet? What other web frameworks support Python 3?

+5
source share
4 answers

Cherrypy 3.2 website says it runs on Python 3! So you go. WSGI is not yet installed for Python3, so you will not find WSGI compatible frameworks (django, web.py) for python3. Cherry, I believe, takes the fastcgi route.

+4
source

1.01 WSGI - ( ).
, , WSGI, WSGI 1.01 python3.

HTTP-, WSGI, WSGI 1 1.01 python3 python2.

PEP 3333 14-15 ( python)

+1

- CherryPy Python 3 , , python3 , CherryPy 3.2 .

0

Bottle, , Cherrypy

. pip3 , , :

app.run(host='localhost',
    port=8080,
    server='cherrypy',
    reloader=True,
    debug=False)
0

All Articles