ai-content-maker/.venv/Lib/site-packages/httpcore/_ssl.py

10 lines
187 B
Python
Raw Permalink Normal View History

2024-05-11 23:00:43 +03:00
import ssl
import certifi
def default_ssl_context() -> ssl.SSLContext:
context = ssl.create_default_context()
context.load_verify_locations(certifi.where())
return context