Re: urllib https post and parsing question

2008-07-12 Thread Bobby Roberts
ok it turns out they are just passing the variables back to me in a url so i have to figure out how to parse that with django nice and neatly. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: urllib https post and parsing question

2008-07-11 Thread Norman Harman
Bobby Roberts wrote: > Hi group. I'm using urllib to send information to my payment > processor via https as follows: > > [snip] > import urllib > > [snip] > > DataPacket = urllib.urlopen(PostUrl , DatatoSend) > PayResponse = DataPacket.read() > PayResponse.close() > > PostUrl is the url i'm

urllib https post and parsing question

2008-07-11 Thread Bobby Roberts
Hi group. I'm using urllib to send information to my payment processor via https as follows: [snip] import urllib [snip] DataPacket = urllib.urlopen(PostUrl , DatatoSend) PayResponse = DataPacket.read() PayResponse.close() PostUrl is the url i'm posting to, Datatosend is the data i'm sending