Git Product home page Git Product logo

turborest's Introduction

TurboRest

TurboRest provides an alternative to the cumbersome RESTMethod bundled with TurboGears 1.5. It supplies two abstractions

RESTResource

Controller base class that provides HTTP method-based dispatch:

class CandidateResource(RESTResource):
    def __init__(self, id):
        super(CandidateResource, self).__init__()
        self.candidate_id = id

    @expose()
    def GET(self):
        return {'success': True, 'candidate': {'id': self.candidate_id}}

    @expose()
    def POST(self):
        """Do POST-y things"""
RESTContainer

Class decorator for creating containers of a specified resource. For example, to create a list of candidate resources such that:

/candidates/<id>

returns a candidate resource for the specified candidate, define the candidates controller as

@RESTContainer(CandidateResource)
class CandidateRootController(Controller):
    pass

The resource class must have a constructor that takes a single integer ID as its parameter.

The controllers.py in the example application provides a more complete demonstration of how the two abstractions fit together.

TurboRest Plugin

TurboRest is defined as a TurboGears plugin that will be automatically included by TurboGears once the TurboRest package is installed. To use it, simply import from the turbogears.rest namespace:

from turbogears.rest import RESTResource, RESTContainer

TurboRest Example

TurboRest includes an example application demonstrating a basic structure. It can be invoked with:

python start-rest-example.py

turborest's People

Contributors

drocco007 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.