Webapp2 with python3

I am using webapp2 with python 2.7 with or without googleAppEngine. Now I'm trying to use it with Python 3.3

I used PIP to install webapp2 Installation is successful, but when I try to import webapp2 from IDLE, I get the following error:

File "<pyshell#0>", line 1, in <module> import webapp2 File "C:\Python3\lib\webapp2.py", line 571 except Exception, e: ^ 

I suspect this is a thing that needs to be updated to work with Python3 ...? Has anyone done this already or should I wait for the webapp2 version update? is there any beta for Python 3 with which we can access

+6
source share
1 answer

Indeed, webapp2 not compatible with Python 3.

There is a problem in Python 3 in the problem tracker for the project, but there is no content in this release. It seems that there are no attempts at the port yet.

+3
source

All Articles