Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

http client post python

import requests
pload = {'username':'Olivia','password':'123'}
r = requests.post('https://httpbin.org/post',data = pload)
print(r.text)
Source by www.datacamp.com #
 
PREVIOUS NEXT
Tagged: #http #client #post #python
ADD COMMENT
Topic
Name
6+4 =