Python: alternative for web.py in python3

I tried installing the web.py module through pip, but I got an import error. Specifically

import utils, db, net, wsgi, http, webapi, httpserver, debugerror
ImportError: No module named 'utils'

So, I realized that this has something to do with the fact that web.py is incompatible with python3.x. So the question is, what are my alternatives? Would I be better off installing python 2.7+ along with python3? Or is there a way I could use this module online with the python 2.7+ interpreter?

+4
source share
1 answer

Right. web.py python3. , . Python2 python3, . , , - (, bottle.py), web.py python27.

web.py python3, , python3 . :

pip install web.py==0.40.dev0
+9

Source: https://habr.com/ru/post/1664697/


All Articles