cerr writes:
> Hi,
>
> I have a Python script that is executing an http POST to transfer a file from
> the client to the server. I have achieved this with below code:
> but my problem is, the data gets posted to the sever but arrives in
> the `$_REQUEST` array and I'm expected to post stuff s
Hi,
I have a Python script that is executing an http POST to transfer a file from
the client to the server. I have achieved this with below code:
from binascii import hexlify, unhexlify
from httplib import HTTPConnection, HTTPException
import os
import hashlib
import socket
import urllib2
import