5
vs15
6y

I have to develop a simple Rest API in python. Any suggestions how to make it possible. I was thinking in traditional direction to setup Django. However, I think there must be a simple way to do this.
thanks.

Comments
  • 2
    Flask or Tornado could be a lighter option, it depends if you need to use WSGI. Tornado uses its own server which can be better if you use websockets
  • 1
    I third flask
  • 1
    I, too, recommended Flask, if it's really simple.
    If you're working with a database however, django-rest-framework is just brilliant.
  • 0
    Flask ftw. It uses werkzeug for routing, plus you can choose to use an orm or not if you want to store some info in a database. Django is nice but I'd recommend Flask if you want to get things done quickly.
Add Comment