Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python request post

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)
Comment

python post request

# 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)
Comment

python requests post

>>> r = requests.post('https://httpbin.org/post', data = {'key':'value'})
Comment

Python Requests Library Post Method

import requests

url = 'http://httpbin.org/post'
payload = {
    'website':'softhunt.net',
    'courses':['Python','JAVA']
    }
response = requests.post(url, data=payload)
print(response.text)
Comment

python requests post

# requires pip install requests
import requests

# webpage url to sent request to
url = 'https://www.google.com'

# send get requests
x = requests.get(url=url)

# print status code of request
print(x.status_code)

# print webpage source code text
print(x.text)

# print webpage as json
print(x.json)

# print webpage headers
print(x.headers)

# send a get request and timeout if it takes longer than 2.5 seconds
x = requests.get(url=url, timeout=2.5)

# demonstrate how to use the 'params' parameter: query string
x = requests.get(url=url, params={"model": "Mustang"})


####################

# require pip install requests
import requests

url = 'https://www.google.com'
form_data = {'username': 'john', 'password': "pwd"}

# send post request
x = requests.post(url=url, json=form_data)

# send post request and timeout if it takes longer than 3 seconds
x = requests.post(url=url, json=form_data, timeout=3)

# use the 'auth' parameter to send requests with HTTP Basic Auth:
x = requests.post(url, data=from_data, auth=('user', 'pass'))

print(x.text)
print(x.headers)
print(x.status_code)
Comment

Make a post request in python

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
Comment

request post python

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))
Comment

PREVIOUS NEXT
Code Example
Python :: print the heat map python 
Python :: create numpy table with random values in range 
Python :: browse list python 
Python :: compute count2(aacaagctgataaacatttaaagag, aaaaa). in python 
Python :: pandas forward fill after upsampling 
Python :: count how many vowels in a string python 
Python :: sigmoid in python from scratch 
Python :: python dir all files 
Python :: df invert sort index 
Python :: removing new line character in python from dataframe 
Python :: flask docker 
Python :: streamlit st.file_uploader 
Python :: python date + days 
Python :: how to make pyautogui search a region of the screen 
Python :: rock paper scissors game in python 
Python :: rename coordinate netcdf python xarray 
Python :: Can only use .str accessor with string values! 
Python :: python plot jpg image 
Python :: pandas count rows with value 
Python :: python opencv create new image 
Python :: streamlit button to load a file 
Python :: presentation in jupyter notebook 
Python :: how to set interval in python 
Python :: convert list to string python 
Python :: bulk file name changer in python 
Python :: matplotlib Savefig cuts off title 
Python :: python calculate prime numbers until numer 
Python :: export a dataframe from rstudio as csv 
Python :: python program to find fibonacci series using function recursion loop 
Python :: euclidean distance python 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =