Executing pl/sql script File in python without sqlclient

2014-04-24 Thread Code
Is there a way to execute pl/sql Script files through Python without sqlclient. i have checked cx_oracle and i guess it requires oracle client, so is there a way to execute without oracle client. -- https://mail.python.org/mailman/listinfo/python-list

Re: urllib2 - My POST Request just isn't working right

2006-02-01 Thread Never Code Faster Than You Can See
ion. do you have to type in a password for your a/c when you look this info up manually on the web? if so, you probably need a secure connection in the api too. e.g. (copied out of my blogger code): conn= httplib.HTTPSConnection(host) conn.set_debuglevel(1) conn.request("POST",path

Re: urllib2 - My POST Request just isn't working right

2006-02-01 Thread Don't Code Faster Than You Can See
(blogger.com gives the same error if you don't .strip() your password before using it to connect) i noticed one spelling mistake here: > headers = { 'Referer' : 'YourCompany', 'Referrer' could it be that simple? -- http://mail.python.org/mailman/listinfo/python-list