Skip to main content

A bare bone webserver

Project description

bbwebservice

bbwebservice is a lightweight Python library for building small webservers. It keeps the original simplicity but now ships with multi-endpoint support, chunked request handling, scoped routing and a bounded worker pool.

Installation

pip install bbwebservice

Usage

  • import helpers:
from bbwebservice.webserver import *
from bbwebservice import core

1. Register pages for HTTP GET

  • @register(route=..., type=...) registers a handler for a GET route.
  • route accepts either a plain string or the selector syntax ip:port::domain:/path. Examples:
    • '::/status' – matches every endpoint
    • '127.0.0.1::/debug' – IPv4 127.0.0.1 on any port and any domain
    • ':::example.com:/info' – any IP/port, only domain example.com
    • UrlTemplate('[::1]:8000::/v1/{slug:str}') – IPv6 with typed placeholders
  • type specifies the MIME type of the response.
@register(route='::/hello', type=MIME_TYPE.TEXT)
def hello():
    return 'Hello World'

2. Register pages for HTTP POST

  • @post_handler works like @register but the decorated function must accept an args parameter.
@post_handler(route='::/login', type=MIME_TYPE.JSON)
def login(args):
    payload = args[STORE_VARS.POST].decode('utf-8')
    return {'status': 'ok', 'raw': payload}

3. Register handlers for other HTTP verbs

  • Additional decorators mirror @post_handler:
    • @put_handler(...)
    • @patch_handler(...)
    • @delete_handler(...)
    • @options_handler(...)
  • They share the same selector syntax and MIME type handling. OPTIONS handlers may omit the args parameter if you only need static responses; HEAD automatically reuses the corresponding GET handler and suppresses the body.
@put_handler(route='::/items/{slug:str}', type=MIME_TYPE.JSON)
def update_item(args):
    data = json.loads(args[STORE_VARS.POST].decode('utf-8'))
    return {'slug': args[STORE_VARS.TEMPLATE_VARS]['slug'], 'data': data}

@options_handler(route='::/items/*', type=MIME_TYPE.TEXT)
def describe_items():
    return 'Allowed: GET, POST, PUT, DELETE, PATCH'

4. Redirects

  • Return a Redirect object to send 303/307 style responses.
@register(route='::/old', type=MIME_TYPE.HTML)
def legacy():
    return Redirect('/new')

5. Partial content / streaming

  • Use PartialContent for ranged responses (video, downloads, etc.).
@register(route='::/video', type=MIME_TYPE.MP4)
def video(_):
    return PartialContent('/content/movie.mp4', default_size=80_000)

6. Error handler

  • @error_handler(error_code=..., type=...) provides fallback pages.
@error_handler(error_code=404, type=MIME_TYPE.HTML)
def not_found():
    return load_file('/content/404.html')

7. Handler arguments

  • Handlers that accept args can read or modify cookies, headers, query strings, etc.
@register(route='::/inspect', type=MIME_TYPE.JSON)
def inspect(args):
    args['response'].header.add_header_line(
        Header_Line(Response_Header_Tag.SERVER, 'bbwebservice')
    )
    return args

8. Start the server

  • Use core.start() to launch all configured listeners.
@register(route='::/index', type=MIME_TYPE.HTML)
def index():
    return load_file('/content/index.html')

core.start()

9. URL templates

  • Dynamic routes use UrlTemplate with typed placeholders.
Supported Types Example
str {name:str}
int {id:int}
float {value:float}
bool {flag:bool}
path {path:path}
@register(route=UrlTemplate('::/user/{name:str}/{age:int}'), type=MIME_TYPE.JSON)
def user(args):
    return args[STORE_VARS.TEMPLATE_VARS]

10. Selector hierarchy

  • The most specific selector wins automatically (IP > port > domain > global). Register routes knowing that concrete bindings take precedence over generic ones.

11. Response helpers

  • In addition to returning bytes/strings, you can respond with:
    • Dynamic(content, mime_type) – content with a custom MIME type
    • PartialContent / Redirect
    • Response(...) – convenience for setting status, headers, body in one object

12. Background tasks

  • server_task(func, interval) schedules functions (receives global state if data parameter present). Tasks shut down gracefully with the server.

13. CORS

  • Enable or disable at runtime:
webserver.enable_cors(
    allow_origin="*",
    allow_methods=["GET", "POST"],
    allow_headers=["Content-Type"],
    expose_headers=["X-Total-Count"],
    allow_credentials=False,
    max_age=600,
)

disable_cors() and get_cors_settings() are provided as well. OPTIONS requests are answered automatically when CORS is active.

14. Worker pool and backpressure

  • All listeners share a bounded worker pool. If the queue is full, new connections get 503 Service Unavailable. Per-listener max_threads throttle accept loops, while the global max_threads (see config) bounds total concurrency.

15. Request parsing

  • Headers are read incrementally up to max_header_size, bodies honour Content-Length or Transfer-Encoding: chunked (trailers are skipped). Chunked data is decoded into the args[STORE_VARS.POST] buffer. Oversized requests trigger 413/431 responses.

16. Logging

  • Logging honours scopes (ip:port::domain) and only formats messages when a sink is active.
set_logging(LOGGING_OPTIONS.INFO, True)
log_to_file('/logs/server.log', [LOGGING_OPTIONS.ERROR, LOGGING_OPTIONS.INFO])
set_logging_callback(lambda msg, ts, lvl: print('[callback]', lvl, msg))

There is also webserver.response() for building structured responses and log() for manual logging with scopes.

Server Configuration

config/config.json controls listeners and limits:

{
  "max_threads": 100,
  "max_header_size": 16384,
  "max_body_size": 10485760,
  "server": [
    {
      "ip": "default",
      "port": 5000,
      "queue_size": 50,
      "max_threads": 25,
      "SSL": false,
      "host": "",
      "cert_path": "",
      "key_path": "",
      "https-redirect": false,
      "https-redirect-escape-paths": [],
      "update-cert-state": false
    }
  ]
}
  • ip: default resolves at runtime, otherwise explicit IPv4/IPv6 (use [::1] style).
  • Multiple entries in server bind additional sockets.
  • SSL with host as list enables SNI (each entry supplies host, cert_path, key_path). Failed certificates are logged with full paths.
  • https-redirect forces 301 to HTTPS except for paths listed in https-redirect-escape-paths (supports wildcard suffix *).
  • update-cert-state watches certificate files and reloads them automatically.

Recommended ports: 5000 (local), 80 (HTTP), 443/8443 (HTTPS).

Logging recap

set_logging(LOGGING_OPTIONS.DEBUG, True)
set_logging(LOGGING_OPTIONS.TIME, True)
log_to_file()

Use set_logging(scope='127.0.0.1:5000::example.com', ...) to target specific endpoints.

Testing

Run the integration script:

python testing/test_bbwebservice_example.py

It covers chunked uploads, CORS preflights, domain/IP selectors and redirects.

License

MIT License © Lukas Walker (see LICENSE for details).

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

bbwebservice-2.1.0.tar.gz (38.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bbwebservice-2.1.0-py3-none-any.whl (38.4 kB view details)

Uploaded Python 3

File details

Details for the file bbwebservice-2.1.0.tar.gz.

File metadata

  • Download URL: bbwebservice-2.1.0.tar.gz
  • Upload date:
  • Size: 38.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for bbwebservice-2.1.0.tar.gz
Algorithm Hash digest
SHA256 a1e5776cd626b2d5dfeaa78680ef87be073b5c671428fe4b481b14e067658eeb
MD5 c7a0a708665b50db7ac6e776994baf29
BLAKE2b-256 34220834b0ecdd6f89b301609911f0520ec8c482efaecc3f3d264ef4d1dc49b2

See more details on using hashes here.

File details

Details for the file bbwebservice-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: bbwebservice-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 38.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for bbwebservice-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 95e3821829df3da0a96b577c25bfcbc3ed0d22e12c61d9beb63c5e12d8f2a1e0
MD5 336c44703f3f3692d89d9343f045c037
BLAKE2b-256 300b78355a296622a6ce933f7c241d38673d1e1dfa56eaecde54271d57aa1647

See more details on using hashes here.

Supported by

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