BaseHTTPServer and do_POST method

R

rocksportrocker

Hi,

I am trying to implement a local server for storing and retrieving
numerical data.
So I used BaseHTTPServer as follows:

from BaseHTTPServer import *

class Handler(BaseHTTPRequestHandler):

def do_POST(self):

print "POST"
self.send_response(200)


httpd = HTTPServer(("",8000), Handler)
 
R

rocksportrocker

Hi,

I am trying to implement a local server for storing and retrieving
numerical data.
So I used BaseHTTPServer as follows:

from BaseHTTPServer import *

class Handler(BaseHTTPRequestHandler):

def do_POST(self):

print "POST"
self.send_response(200)

httpd = HTTPServer(("",8000), Handler)

Please ignore this post, I accidentally hit the "Send" button before
finishing.

Greetings, Uwe
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,260
Messages
2,571,038
Members
48,768
Latest member
first4landlord

Latest Threads

Top