Socketserver multiprocessing.Process is starting without calling start()
I have a problem with a Python script on my rpi. If I create a process object, it starts automatically and blocks everything else. I want it to run in the background, and to be able to start it by calling the start() method. network_manager.py: import socketserver class NetworkManagerHandler(socketserver.StreamRequestHandler): def handle(self): print("Got some Data!") class NetworkManagerServer(socketserver.ForkingMixIn, socketserver.TCPServer): pass core.py: import multiprocessing from network_manager import NetworkManagerServer, NetworkManagerHandler HOST, PORT = "100.0.0.1", 11891 network