Giter Site home page Giter Site logo

Request helper functions about klein HOT 1 CLOSED

twisted avatar twisted commented on May 21, 2024
Request helper functions

from klein.

Comments (1)

notoriousno avatar notoriousno commented on May 21, 2024

I figured out how to do this with a bit of Twisted basics. I started by subclassing the Site and Request classes (twisted.web.server). In the Request subclass, I added the helper functions. Then I overloaded the buildProto() function in the Site subclass so the Site.requestFactory is set to my subclassed Request. Then I slightly modified what klein.app.Klein.run does and start a TCP server using my subclasses. Works like a charm!

from klein import Klein
from twisted.web import http, server
from twisted.internet import reactor


#----- Subclasses -----#
class KleinHTTPRequest(server.Request):
    """ Request subclass """

    def getter(self, key, default=None):
        # ...

    def getOne(self, key, default=None):
        # ...

    def getOneCast(self, key, cast, default=None, decoding=None):
       # ...

class KleinSite(server.Site):
    """ Site subclass """

    def buildProtocol(self, addr):
        channel = http.HTTPFactory.buildProtocol(self, addr)
        channel.requestFactory = KleinHTTPRequest            # produce subclassed Request
        channel.site = self
        return channel


#----- Routes -----#
app = Klein()

@app.route('/hello', methods=['POST'])
def home(request):
    return b'hello ' + request.getOne('name', 'world')


#----- Start server -----#
reactor.listenTCP(8000, KleinSite(app.resource()), interface='localhost')
reactor.run()

from klein.

Related Issues (20)

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.