File: basic_auth_client.py

package info (click to toggle)
python-websockets 15.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,948 kB
  • sloc: python: 25,105; javascript: 350; ansic: 148; makefile: 43
file content (15 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

# WS client example with HTTP Basic Authentication

import asyncio

from websockets.legacy.client import connect

async def hello():
    uri = "ws://mary:p@ssw0rd@localhost:8765"
    async with connect(uri) as websocket:
        greeting = await websocket.recv()
        print(greeting)

asyncio.run(hello())