web.Accepted

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

1 Examples 7

Example 1

Project: CommunityCellularManager Source File: config.py
    def req_checkin(self):
        # Fire off a worker to send the checkin, then send back a 202.
        t = threading.Thread(target=self.checkin_worker)
        t.start()
        return web.Accepted()