Code Monkey home page Code Monkey logo

Comments (6)

afreeland avatar afreeland commented on August 15, 2024 4

Not quite sure what I did but will put it here if it helps anything...

Was looking at different way to do threading in python and ran across this threading link.

I went into the websocket_server.py file and modified

def run_forever(self):
        try:
            logger.info("Listening on port %d for clients.." % self.port)
            self.serve_forever()

to this

def run_forever(self):
        try:
            logger.info("Listening on port %d for clients.." % self.port)
            # self.serve_forever()
            _serve = self.serve_forever
            # Start a thread with the server -- that thread will then start one
            # more thread for each request
            server_thread = threading.Thread(target=_serve)
            # Exit the server thread when the main thread terminates
            server_thread.daemon = True
            server_thread.start()

Not sure why or how...but now my app appears to start the socket server...continue along peacefully and connect to my browser client. Best accidental discovery I have made today lol

Is this something that could be useful for others?

from python-websocket-server.

Pithikos avatar Pithikos commented on August 15, 2024 2

You don't have to do that. You should be able to run server_forever as a separate thread, similarly to how you did it.

I think the issue you first experienced was that you were passing threading.Thread(target=server.run_forever()) instead of (the correct) threading.Thread(target=server.run_forever). Notice that in the latter you are passing the function while in the first you are actually running the function.

from python-websocket-server.

afreeland avatar afreeland commented on August 15, 2024

It appears that the Ctrl+C trick only works once the client already connects to the socket server

So this works

  • start socket server
  • connect browser client
  • Ctrl+C python code
  • execute remaining while loop

This does NOT work

  • start socket server
  • Ctrl + C
  • connect browser client (fails)
  • remaining loop runs

from python-websocket-server.

murphy214 avatar murphy214 commented on August 15, 2024

@afreeland Dude you literally probably saved me hours with this thanks so much. Maybe you make pull request for it?

from python-websocket-server.

afreeland avatar afreeland commented on August 15, 2024

@murphy214 Glad I could help =)

from python-websocket-server.

kirkatexo avatar kirkatexo commented on August 15, 2024

Original solution may have been overthinking it, but I had been trying something very similar with multiprocessing and running into pickle/cross-process issues with the server object. Didn't think to try threading instead until I saw this conversation. Kudos to @afreeland for the inadvertent solution.

And lest it be misinterpreted, many thanks to @Pithikos for the fantastic Pythonic WebSockets solution. Minimal dependencies, beautifully clean API, robust use-case support. Invaluable.

from python-websocket-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.