Answers for "post request in python"

0

python requests post

>>> r = requests.post('https://httpbin.org/post', data = {'key':'value'})
Posted by: Guest on June-14-2021
1

send get request python

import socket

target_host = "www.google.com" 
target_port = 80

# create a socket object 
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
 
# connect the client 
client.connect((target_host,target_port))  

# receive some data 
response = client.recv(4096)
print(f'Source Code: {response}')
http_response = repr(response)
Posted by: Guest on May-27-2020
0

python handling a post request

# 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)
Posted by: Guest on June-09-2021
0

python post request

requests.post('https://identitytoolkit.googleapis.com/v1/accounts:signUp?key={}'.format(apikey))
Posted by: Guest on September-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language