如何使用python / django实现restful webservice

我尝试使用由
django /
python创建的Web服务设置一个ubuntu服务器,任何人都有一个资源/教程/示例代码 最佳答案 还有
piston,这是一个用于创建RESTful API的Django框架.它有一个轻微的学习曲线,但很适合Django.

如果你想要更轻量级的东西,Simon Willison拥有我之前使用的非常好的模型HTTP方法的nice snippet

class ArticleView(RestView):

    def GET(request, article_id):
        return render_to_response("article.html", {
            'article': get_object_or_404(Article, pk = article_id),
        })

    def POST(request, article_id):
        # Example logic only; should be using django.forms instead
        article = get_object_or_404(Article, pk = article_id)
        article.headline = request.POST['new_headline']
        article.body = request.POST['new_body']
        article.save()
        return HttpResponseRedirect(request.path)

Jacob Kaplan-Moss在Worst Practices in REST上发表了一篇很好的文章,可以帮助您远离一些常见的陷阱.

点赞