Skip to main content

Async server for userv

Project description

The catch

Most simplistic socket server for micropython

Webserver

first we need to add routes to a router. This is described in userv.core although serving static files is described below.

Example:

from userv.routing import Router
from userv.socket_server import run_server
router = Router()
# we add some routes

run_server(router)

this way the server starts and runs forever. Because sometimes you want to start a standby mode there is way to kill the run task by given a callback which controls the loop. We call it the timeout callback for now. Basicly the server runs as long as the function returns True.

Example:

def we_never_timeout():
    return True

run_server(router, timeout_callback=we_never_timeout)

This is only a realy simple and silly example, but be aware to not do heavy lifting in this function, because it will hinder your server to react normal.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

userv.socket_server-0.3.2.tar.gz (1.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page