Skip to content

Instantly share code, notes, and snippets.

View eduardoluizgs's full-sized avatar

Eduardo Luiz eduardoluizgs

View GitHub Profile
@erikbern
erikbern / use_pfx_with_requests.py
Last active February 26, 2024 00:23
How to use a .pfx file with Python requests – also works with .p12 files
import contextlib
import OpenSSL.crypto
import os
import requests
import ssl
import tempfile
@contextlib.contextmanager
def pfx_to_pem(pfx_path, pfx_password):
''' Decrypts the .pfx file to be used with requests. '''