I am building a chat application using flask socketio and I want to send to a specific singular client and I'm wondering how to go about this.
I get that emit has broadcast and include_self arguments to send to all and avoid sending oneself, but how exactly would I go about maybe emitting to a single sid?
I've built this application using standard TCP/UDP socket connection where upon client connecting, there socket info was stored in a dictionary mapped to their user object with attributes that determined what would be sent and when I wanted to emit something to the clients I would iterate through this and be able to control what was being sent.
I'm hoping some mastermind could help me figure out how to do this in flask socket io