我尝试使用由django/python创建的Web服务设置一个ubuntu服务器,任何人都有一个资源/教程/示例代码
还有活塞,它是用于创建RESTful API的Django框架.它有一个轻微的学习曲线,但很适合Django.
如果你想要一些更轻量级的东西,Simon Willison有一个非常好的代码片段,我以前用它很好地模拟了HTTP方法:
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)有一篇关于REST中最差实践的好文章,可以帮助您远离一些常见的陷阱.