Tony Blundell
# python requests lib url = '<https://example.com>' headers = { 'Content-Type': 'application/x-www-form-urlencoded' } cert = (path_to_cert_file, path_to_key_file) data = { 'username': username, 'password': password } r = <http://requests.post|requests.post>(url, headers=headers, cert=cert, data=data)
e5l
A modern programming language that makes developers happier.