Just started playing with Google App Engine & Python (as an excuse ;)). How do I correctly submit a form like this
<form action='https://www.moneybookers.com/app/payment.pl' method='post' target='_blank'> <input type='hidden' name='pay_to_email' value='ENTER_YOUR_USER_EMAIL@MERCHANT.COM'> <input type='hidden' name='status_url' <!-- etc. --> <input type='submit' value='Pay!'> </form>
w/o exposing the data to user?
It sounds like you’re looking for urllib.
Here’s an example of POSTing from the library’s docs: