twisted.web.http.Request.__init__ - python examples

Here are the examples of the python api twisted.web.http.Request.__init__ taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

6 Examples 7

3 View Complete Implementation : ClientRequest.py
Copyright MIT License
Author : adde88
    def __init__(self, channel, queued, reactor=reactor):
        Request.__init__(self, channel, queued)
        self.reactor       = reactor
        self.urlMonitor    = URLMonitor.getInstance()
        self.cookieCleaner = CookieCleaner.getInstance()
        self.dnsCache      = DnsCache.getInstance()

3 View Complete Implementation : ClientRequest.py
Copyright GNU General Public License v3.0
Author : paranoidninja
    def __init__(self, channel, queued, reactor=reactor):
        Request.__init__(self, channel, queued)
        self.reactor       = reactor
        self.urlMonitor    = URLMonitor.getInstance()
        self.hsts          = URLMonitor.getInstance().hsts
        self.cookieCleaner = CookieCleaner.getInstance()
        self.dnsCache      = DnsCache.getInstance()
        #self.uniqueId      = random.randint(0, 10000)
        
        #Use are own DNS server instead of reactor.resolve()
        self.customResolver = dns.resolver.Resolver()    
        self.customResolver.nameservers  = ['127.0.0.1']

0 View Complete Implementation : server.py
Copyright MIT License
Author : adde88
    def __init__(self, *args, **kw):
        http.Request.__init__(self, *args, **kw)
        components.Componentized.__init__(self)
        self.notifications = []

0 View Complete Implementation : t48_http_proxy_wordcount.py
Copyright BSD 2-Clause "Simplified" License
Author : ScrappyZhang
    def __init__(self, wordCounter, *args):
        self.wordCounter = wordCounter
        http.Request.__init__(self, *args)

0 View Complete Implementation : proxy.py
Copyright MIT License
Author : wistbean
    def __init__(self, channel, queued=_QUEUED_SENTINEL, reactor=reactor):
        Request.__init__(self, channel, queued)
        self.reactor = reactor

0 View Complete Implementation : server.py
Copyright MIT License
Author : wistbean
    def __init__(self, *args, **kw):
        http.Request.__init__(self, *args, **kw)
        components.Componentized.__init__(self)