Coder Social home page Coder Social logo

django-websocketclient's People

Contributors

kirankumbhar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

django-websocketclient's Issues

Runing Server And WebSocket Client Together

How to run server and WebSocket client together?
I want my website to check exchange prices and update server models. how should I run "runserver" and "runwebsocketclient" at the same time?

unable to connect to HA websocket

Hi Kirankumbhar,

I'm trying to use your websocketclient to connect to an HomeAssistant instace to get some data.

I've setup websocketclient host:port and path, auth_header = auth (as per documentation at https://developers.home-assistant.io/docs/api/websocket/) the token and the token_scheme = bearer but I'm unable to authenticate and stay in an authentication loop


Connecting to Websocket Server at ws://172.16.192.202:8123/api/websocket
Successfully connected to Websocket Server
{"type":"auth_required","ha_version":"2023.6.3"}
Successfully connected to Websocket Server
{"type":"auth_required","ha_version":"2023.6.3"}
Successfully connected to Websocket Server
{"type":"auth_required","ha_version":"2023.6.3"}

it seams I'm not sending response to auth_required or the response I'm sending is incorrect.

can you provide some help on this?

best regards,
Tiago

Feature Request: Support Graphql subscription

I'm not exactly sure how to modify the code to achieve this, but I think it would involve two things:

  • being able to pass the subprotocols arg to websockets.connect()
  • being able to send a subscription query on connect

Example working code:

async def capture_data():
  uri = "ws://localhost:8000/graphql"
  start = {
    "type": "start",
    "payload": {"query": "subscription { whatever }"}
  }
  async with websockets.connect(uri, subprotocols=["graphql-ws"]) as websocket:
    await websocket.send(json.dumps(start))
    while True:
      data = await websocket.recv()
      handle_msg(json.loads(data))

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.