Code Monkey home page Code Monkey logo

Comments (6)

DavidSteinmann avatar DavidSteinmann commented on July 16, 2024 1

I just do a for loop looping over all the clients and selecting only the one i want. Here's my function:

def sendMessageToClient(name, message):
	targetClient = None
	for oneClient in server.clients:
		if oneClient['id'] == name:
			targetClient = oneClient
			break
	if targetClient is not None:
		server.send_message(targetClient, message)

Hope it helps

from python-websocket-server.

Pithikos avatar Pithikos commented on July 16, 2024 1

This is a bad design decision at the time - using a list instead of a dict.

The workaround is to loop through the clients and once you find your client, use the handler handler.send_text

from python-websocket-server.

Pithikos avatar Pithikos commented on July 16, 2024 1

Maybe there should be a server.clients_dict or something (in addition to the existing, to keep compatibility)?

Yes, probably a clients_by_id with client ID as key. But not something I have the time currently to work on unfortunately

from python-websocket-server.

TheTechRobo avatar TheTechRobo commented on July 16, 2024 1

I might pick this up. Shouldn't be too difficult.

from python-websocket-server.

TheTechRobo avatar TheTechRobo commented on July 16, 2024

Maybe there should be a server.clients_dict or something (in addition to the existing, to keep compatibility)?

from python-websocket-server.

AsgJeold avatar AsgJeold commented on July 16, 2024

I just do a for loop looping over all the clients and selecting only the one i want. Here's my function:

def sendMessageToClient(name, message):
	targetClient = None
	for oneClient in server.clients:
		if oneClient['id'] == name:
			targetClient = oneClient
			break
	if targetClient is not None:
		server.send_message(targetClient, message)

Hope it helps

Thanks for that. It helped me to solve this problem.

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.