ssl

Stdlib — NetworkingPython 2.0+Advanced

TLS/SSL wrapper for sockets; enables HTTPS

Quick Info

Documentation
Official Docs
Python Version
2.0+
Dependencies
None — Python Standard Library
Install
Included with Python

Learn by Difficulty

Quick Example

python
import ssl

print(f"Module: ssl")
print(f"Contents: {dir(ssl)[:10]}")

The ssl module is part of Python's standard library. TLS/SSL wrapper for sockets; enables HTTPS.

Try in Playground

Tags

stdlibnetworkinginternet