headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:55.0) Gecko/20100101 Firefox/55.0',
}
pload = {'key':'value'}
r = requests.post('https://URL', data=pload, headers=headers)
print(r.text)
# In your terminal run: pip install requests
import requests
data = {"a_key": "a_value"}
url = "http://your-path.com/post"
response = requests.post(url, json=data)
print(response)
# first do: pip install flask
from flask import Flask, request
app = Flask(__name__)
@app.route('/', methods=['POST'])
def result():
print(request.data) # raw data
print(request.json) # json (if content-type of application/json is sent with the request)
print(request.get_json(force=True)) # json (if content-type of application/json is not sent)
from requests_html import HTMLSession
session = HTMLSession()
# url to make a post request to
url='https://httpbin.org/post'
post_user ={
"user":'alixaprodev',
"pass":'password'
}
# making post request
response = session.post(url, data=post_user)
print(f'Content of Request:{response.content} ')
print(f'URL : {response.url}')
## output ##
# Content of Request:b'{
"form": {
"pass": "password",
"user":
#"alixaprodev"
}
# URL : https://httpbin.org/postCopy Code
import requests
import logging
API_KEY = "xxxxxxxxxxxxxxxxxxxxxxx"
API_ENDPOINT = "https://sample.endpoint.php"
try:
# your source data eg format
source_data = {"key":list(values)}
# header to be sent to api
headers = {"api-key" : API_KEY}
# sending post request and saving response as response object
r = requests.post(url = API_ENDPOINT, json=source_data, headers=headers)
logging.info("Data push was completed with status code :"+str(r.status_code))
except requests.exceptions.RequestException as e:
logging.info("error occured : "+ str(e) +"
status code:"+str(r.status_code))