About 3,080,000 results
Open links in new tab
  1. python - Basic networking with Pygame - Stack Overflow

    Apr 1, 2012 · I need to do some basic networking for a Pygame project. Basically, it's a 2D single player or cooperative game. The networking only needs to support two players, with one as a host. The only …

  2. Good Python networking libraries for building a TCP server?

    Jun 2, 2009 · I was just wondering what network libraries there are out there for Python for building a TCP/IP server. I know that Twisted might jump to mind but the documentation seems scarce, sloppy, …

  3. Finding local IP addresses using Python's stdlib

    Oct 3, 2008 · How can I find local IP addresses (i.e. 192.168.x.x or 10.0.x.x) in Python platform independently and using only the standard library?

  4. What networking libraries/frameworks exist for Python?

    Sep 23, 2009 · I was wondering what good networking libraries/frameworks there are for Python. Please provide a link to the standard API documentation for the library, and perhaps a link to a decent …

  5. Basic Python client socket example - Stack Overflow

    Here is the simplest python socket example. Server side: import socket serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) serversocket.bind(('localhost', 8089)) …

  6. Python simple socket client/server using asyncio

    I would like to re-implement my code using asyncio coroutines instead of multi-threading. server.py def handle_client(client): request = None while request != 'quit': request = cl...

  7. Network programming: Python vs. C for a complete beginner

    Dec 12, 2009 · 4 Depending on what level (s) of the networking stack you want to work, C may be indispensable, useful, or hardly relevant. But if trying to tackle C first is wearing down your …

  8. UDP Client/Server Socket in Python - Stack Overflow

    I am trying to write an echoing client/server socket. I have written the server so that 30% of the packets are lost. I programmed my client to timeout after one second since the packet could be lo...

  9. OSError [Errno 22] invalid argument when use open ()

    Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges,

  10. Creating connection between two computers in python

    Twisted is a python event-driven networking engine licensed under MIT. Means that a single machine can communicate with one or more other machines, while doing other things between data being …