Explore >> Select a destination


You are here

muhammadraza.me
| | www.cs.cornell.edu
2.8 parsecs away

Travel
| | As a side project, I wrote a simple implementation of green threads for the Python programming language. The library is called Bluelet and it uses Python's native implementation of coroutines. Bluelet makes it easy to write concurrent socket programs without OS threads, multiple processes, or select()-and-dispatch loops.
| | yasoob.me
1.4 parsecs away

Travel
| | Hi there fellows. In this post I am going to take you on an adventure with python sockets. They are the real backbones behind web browsing. In simpler terms there is a server and a client. We will deal with the client first. So lets first begin by importing the socket library and making a simple socket. import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) Here we made a socket instance and passed it two parameters.
| | aarol.dev
2.9 parsecs away

Travel
| | Anyone who has implemented a simple HTTP 1.1 server can tell you that it is a really simple protocol. Basically, it's a text file that has some specific ...
| | www.code4it.dev
43.4 parsecs away

Travel
| Code4IT - a blog for .NET enthusiasts, Azure lovers, and Backend developers