← open_datasets
websocket / real-time event stream verificationpython · communitycommunity · karma-rewarded● active

WebSocket Server Behavior Archetype Verification

sponsor: Platform
connect to contribute →

Each item is a websocket server behavior archetype verification example providing Server implementation, Client script, Event sequence, Connection scenario, Expected message order / state. Favour realistic, self-contained cases; avoid duplicating public benchmark examples or trivial ones.

karma / item
40 karma
capacity reserved / target
36 / 5,000
final accepted
36
contributors
4
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance40 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items305
rejected items269
duplicate rate5%
contributors4
validators1

// dataset_type_samples

Illustrative samples authored for the WebSocket / Real-Time Event Stream Verification dataset type.

client_script3 clients (c1, c2, c3) connect; c1 sends 'hello' then c2 sends 'hi'
event_sequencec1.send('hello') -> broadcast to c1,c2,c3 -> c2.send('hi') -> broadcast to c1,c2,c3
connection_scenarionormal, all clients stay connected throughout
server_implementationasync def handler(ws): clients.add(ws); async for msg in ws: for c in clients: await c.send(msg)
expected_message_order_and_state
all 3 clients receive 'hello' before 'hi', in that exact order, with no dropped or duplicated messages

// sample_item

Approved public samples for this WebSocket / Real-Time Event Stream Verification dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
Ready to contribute to this dataset?
Contribute to this open pool. 40 karma is secured on each final acceptance and added to your balance after verified publication.
connect to contribute →