Implement HTTP API for Fichero D11s printer with status and print endpoints
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled

This commit is contained in:
2026-03-07 11:39:20 +01:00
parent f945a87c43
commit 43495714e6
3 changed files with 438 additions and 0 deletions

View File

@@ -9,6 +9,13 @@ dependencies = [
"pillow",
]
[project.optional-dependencies]
api = [
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"python-multipart>=0.0.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
@@ -18,3 +25,4 @@ packages = ["fichero"]
[project.scripts]
fichero = "fichero.cli:main"
fichero-server = "fichero.api:main"