About 2,330,000 results
Open links in new tab
  1. Socket Programming in Python - GeeksforGeeks

    Feb 28, 2023 · Socket programming is started by importing the socket library and making a simple socket. Here we made a socket instance and passed it two parameters. The first parameter is AF_INET and the second one is SOCK_STREAM. AF_INET refers to the address-family ipv4. The SOCK_STREAM means connection-oriented TCP protocol.

  2. How to send a list through TCP sockets - Python

    Use pickle or json to send list(or any other object for that matter) over sockets depending on the receiving side. You don't need json in this case as your receiving host is using python. import pickle y=[0,12,6,8,3,2,10] data=pickle.dumps(y) s.send(data)

  3. Socket Programming in Python (Guide) – Real Python

    Dec 7, 2024 · In this in-depth tutorial, you'll learn how to build a socket server and client with Python. By the end of this tutorial, you'll understand how to use the main functions and methods in Python's socket module to write your own networked client-server applications.

  4. A Complete Guide to Socket Programming in Python - DataCamp

    Aug 18, 2023 · In this article, we will cover the basics of socket programming and provide a step-by-step guide to creating socket-based client and server applications using Python. So without further ado, let's dive right in! Networking enables communication and information sharing of …

  5. Top 21 socket-programming Open-Source Projects - LibHunt

    Jan 19, 2025 · Which are the best open-source socket-programming projects? This list will help you: pythoncode-tutorials, microtcp, LinuxNetworkProgramming, python-mocket, mediator, Autonomous-car, and socketwrapper.

  6. Python Socket Programming Guide (With Examples)

    Sep 5, 2023 · We will walk you through everything you need to know about Python sockets, from the basic to the advanced usage. By the end of this guide, you will have a solid understanding of Python sockets and how to use them effectively in your projects. TL;DR: What is …

  7. Top 7 Python socket-programming Projects - LibHunt

    Jun 28, 2021 · Which are the best open-source socket-programming projects in Python? This list will help you: python-mocket, mediator, Autonomous-car, TinyChat, python-reverse-shell, RemoteShell, and Chat-Server-App-.

  8. python-socket-programming · GitHub Topics · GitHub

    Jul 11, 2024 · build a simple chat server with python socket programming and Docker. The bulletin board project is a real-time messaging application developed using Python's socket programming, enabling users to post and view messages on a virtual bulletin board.

  9. Python Socket Programming: Server and Client Example Guide

    Feb 21, 2025 · In this tutorial, you will learn the basics of Python socket programming, including how to create a simple client-server architecture, handle multiple clients using threading, and understand the differences between TCP and UDP sockets.

  10. Socket Programming: A Clear and Practical Guide with Python

    Dec 25, 2024 · We create a socket object from the socket method and connect it to a server. The socket sends an HTTP request (to fetch the homepage of Python’s website). It then waits for and receives the...

  11. Some results have been removed
Refresh