Top "Socketserver" questions

Python module which simplifies the task of writing network servers.

socket server - getting a connected user's ip

I have just started to make a simple socket "chat" server where users connect to my server through telnet. I …

python python-2.7 socketserver python-sockets
TcpListener: How to listen on specific port on all interfaces?

There are three overloads for constructing a TcpListener: public TcpListener(int port); (obsolete) public TcpListener(IPEndPoint localEP) public TcpListener(IPAddress …

.net sockets tcplistener socketserver
With python socketserver how can I pass a variable to the constructor of the handler class

I would like to pass my database connection to the EchoHandler class, however I can't figure out how to do …

python python-2.7 socketserver
Simple TCP Server in python

Newbie here. I am trying to create a simple TCP server is process requests using SocketServer. Somehow, the handle() method …

python socketserver
Python - BaseHTTPServer.HTTPServer Concurrency & Threading

Is there a way to make BaseHTTPServer.HTTPServer be multi-threaded like SocketServer.ThreadingTCPServer?

python multithreading httpserver basehttpserver socketserver
TCP-Server over SSL using SocketServer.TCPServer

i want to add ssl-support to an existing TCP-server which is based on the SocketServer.TCPServer class. So i overrode …

python ssl tcp socketserver
OSError [Errno 99] - python

i want to execute the following simple server code: import socket s = socket.socket() # Create a socket object host = socket.…

python socketserver
Close server socket on quit/crash

I'm learning how to use sockets in python, and quite often when my program crashes or I Ctrl+C the …

python sockets socketserver
Python error TypeError: argument should be bytes, buffer or ASCII string, not 'NoneType'

I'm trying to create a tool to transfer binary files in python 3 and running into an odd issue on the …

python python-3.x typeerror socketserver binascii
How to create connection timeout with python SocketServer

Good day! I was writen simple server: class SingleTCPHandler(SocketServer.BaseRequestHandler): def handle(self): data = self.request.recv(1024) self.request.…

python socketserver