Overview

TCP/UDP sockets.

Quick Example

  socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  

When to Use

Use this module when you need built-in support without adding third-party dependencies.

Common Tasks

See Also