home > Reading raw data from post

Reading raw data from post

Other languages: français

Introduction

Sometimes, the client sends a lot of data by the POST method. In webpy, you can handle it like this.

Code

class RequestHandler(object):
    def POST(self):
        data = web.data() # you can get data use this method