REST web service in python 3?

I am new to the python world and now I am using it in a new project. Therefore, since we have to learn, we decided to start with python 3. Now we need to create a RESTful web service. After reading a few, I found out that the most used framework for web services is Django ... and I also read on the Django website that it does not yet support python 3.

Is there any other API that I could use to create a RESTful web service?

Thank.

+5
source share
3 answers

CherryPy Python 3. , , - , .

+3

Bottle , Python 3. google group .

0

I really like to use the bottle and run it on the cherry. It's very simple, do everything for each bottle instruction, and then say in the run line that it uses the vortex like a server.

Exampple:

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

All Articles