File size: 187 Bytes
d1ceb73
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import ssl

import certifi


def default_ssl_context() -> ssl.SSLContext:
    context = ssl.create_default_context()
    context.load_verify_locations(certifi.where())
    return context