• Stars
    star
    1,147
  • Rank 40,664 (Top 0.9 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 10 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple fully working websocket-server in Python with no external dependencies

Websocket Server

CircleCI PyPI version

A minimal Websockets Server in Python with no external dependencies.

  • Python3.6+
  • Clean simple API
  • Multiple clients
  • No dependencies

Notice this project is focused mainly on making it easy to run a websocket server for prototyping, testing or for making a GUI for your application. Thus not all possible features of Websockets are supported.

Installation

Install with pip

pip install websocket-server

For coding details have a look at the server.py example and the API.

Usage

You can get a feel of how to use the websocket server by running

python server.py

Then just open client.html in your browser and you should be able to send and receive messages.

Testing

Run all tests

pytest

API

The API is simply methods and properties of the WebsocketServer class.

WebsocketServer

The WebsocketServer can be initialized with the below parameters.

port - The port clients will need to connect to.

host - By default the 127.0.0.1 is used which allows connections only from the current machine. If you wish to allow all network machines to connect, you need to pass 0.0.0.0 as hostname.

loglevel - logging level to print. By default WARNING is used. You can use logging.DEBUG or logging.INFO for more verbose output.

key - If using SSL, this is the path to the key.

cert - If using SSL, this is the path to the certificate.

Properties

Property Description
clients A list of client

Methods

Method Description Takes Gives
run_forever() Runs server until shutdown_gracefully or shutdown_abruptly are called. threaded: run server on its own thread if True None
set_fn_new_client() Sets a callback function that will be called for every new client connecting to us function None
set_fn_client_left() Sets a callback function that will be called for every client disconnecting from us function None
set_fn_message_received() Sets a callback function that will be called when a client sends a message function None
send_message() Sends a message to a specific client. The message is a simple string. client, message None
send_message_to_all() Sends a message to all connected clients. The message is a simple string. message None
disconnect_clients_gracefully() Disconnect all connected clients by sending a websocket CLOSE handshake. Optional: status, reason None
disconnect_clients_abruptly() Disconnect all connected clients. Clients won't be aware until they try to send some data. None None
shutdown_gracefully() Disconnect clients with a CLOSE handshake and shutdown server. Optional: status, reason None
shutdown_abruptly() Disconnect clients and shutdown server with no handshake. None None
deny_new_connections() Close connection for new clients. Optional: status, reason None
allow_new_connections() Allows back connection for new clients. None

Callback functions

Set by Description Parameters
set_fn_new_client() Called for every new client connecting to us client, server
set_fn_client_left() Called for every client disconnecting from us client, server
set_fn_message_received() Called when a client sends a message client, server, message

The client passed to the callback is the client that left, sent the message, etc. The server might not have any use to use. However it is passed in case you want to send messages to clients.

Example:

import logging
from websocket_server import WebsocketServer

def new_client(client, server):
	server.send_message_to_all("Hey all, a new client has joined us")

server = WebsocketServer(host='127.0.0.1', port=13254, loglevel=logging.INFO)
server.set_fn_new_client(new_client)
server.run_forever()

Example (SSL):

import logging
from websocket_server import WebsocketServer

def new_client(client, server):
	server.send_message_to_all("Hey all, a new client has joined us")

server = WebsocketServer(host='127.0.0.1', port=13254, loglevel=logging.INFO, key="key.pem", cert="cert.pem")
server.set_fn_new_client(new_client)
server.run_forever()

Client

Client is just a dictionary passed along methods.

{
	'id'      : client_id,
	'handler' : client_handler,
	'address' : (addr, port)
}

More Repositories

1

C-Thread-Pool

A minimal but powerful thread pool in ANSI C
C
2,063
star
2

docker-enter

A docker tool to enter an existing container. The tools relies on docker and setns.
C
84
star
3

rest-framework-roles

Role-based permissions for Django and Django REST Framework
Python
56
star
4

python-rectangles

Generic rectangles in screen coordinates. Functions to test relations between rectangles are supported like overlap, distance, etc.
Python
26
star
5

Geoexplorer

A testing and development tool for developers working with Google Places, Foursquare and other geo-services.
Python
26
star
6

winlaunch

Save the position of open windows and auto-generate scripts to launch them
Python
17
star
7

django-compressor-postcss

PostCSS support for django-compressor
Python
16
star
8

python-reusables

Reusable code for Python so I don't have to write the same thing twice!
Python
11
star
9

php-table-class

PHP Table class with minimal interface
PHP
11
star
10

Dockerfiles

A set of documented Dockerfiles
Shell
5
star
11

debian-scripts-and-bashisms

Scripts and files to ease the pain of getting a fresh new Ubuntu install to a ready dev machine.
Python
4
star
12

bootchain

Run bootstrap scripts recursively
Shell
3
star
13

mbed-win-ls

Show connected mbed boards to a Windoze machine
Python
2
star
14

rest-datasource

REST Datasource for Grafana
TypeScript
2
star
15

Google-Places-v3-Python3-wrapper

A wrapper for Google Places v3 - Python3
Python
2
star
16

mbed-tools

A set of tools/scripts that can be of benefit to anyone playing with mbed boards
Python
2
star
17

bash-contexter

No need to type the full commands in the terminal anymore
Shell
2
star
18

mbed_lmtools

Playground to create lmtools for mbed
Python
1
star
19

docummander

A Jekyll template for documenting projects easily via the web browser
CSS
1
star