Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, January 24, 2013

Making a POST Request



# Codecademy sample solution

########## Example request #############
# POST /learn-http HTTP/1.1
# Host: www.codecademy.com
# Content-Type: text/html; charset=UTF-8
# Name=Eric&Age=26

import requests

body = {'Name': 'Eric', 'Age': '26'}

# Make the POST request here, passing body as the data:
response = requests.post('http://codecademy.com/learn-http/', data=body)

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts