This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author barbi
Recipients barbi, docs@python, ezio.melotti, georg.brandl, orsenthil, petri.lehtinen
Date 2011-07-18.01:58:54
SpamBayes Score 0.0015475203
Marked as misclassified No
Message-id <1310954335.51.0.293530696314.issue12524@psf.upfronthosting.co.za>
In-reply-to
Content
Newbie here. Please be patient.

When I tried using the POST form in this page, I ran into minor issues.
1. The form returns a 302 to the actual issue page. Some other example with 200 may be better.
2. The params are a little weird, with '@' in the names. Might be confusing for newbies.
3. Form action param is '#', which is not a great example.

Please suggest if I should continue with this example or find a better one.

Code:
import http.client, urllib.parse
params = urllib.parse.urlencode({'@number': 12524, '@type': 'issue', '@action': 'show'})
headers = {"Content-type": "application/x-www-form-urlencoded",
           "Accept": "text/plain"}
conn = http.client.HTTPConnection("bugs.python.org")
conn.request("POST", "#", params, headers)
response = conn.getresponse()
print(response.status, response.reason)
data = response.read()
conn.close()
data
b'Redirecting to <a href="http://bugs.python.org/issue12524">http://bugs.python.org/issue12524</a>'
History
Date User Action Args
2011-07-18 01:58:55barbisetrecipients: + barbi, georg.brandl, orsenthil, ezio.melotti, docs@python, petri.lehtinen
2011-07-18 01:58:55barbisetmessageid: <1310954335.51.0.293530696314.issue12524@psf.upfronthosting.co.za>
2011-07-18 01:58:54barbilinkissue12524 messages
2011-07-18 01:58:54barbicreate