Make a simple REST API server instance with Clacks

PHOTO EMBED

Tue Apr 04 2023 22:23:39 GMT+0000 (Coordinated Universal Time)

Saved by @MaVCArt #python

import clacks_web

# -- as you can see, with the clacks_web library, making a simple REST API web server is dead easy.
server = clacks_web.simple_rest_api('My First Web Server', 'localhost', 9000)
server.start(blocking=True)
content_copyCOPY