12 lines
468 B
Python
12 lines
468 B
Python
"""webapp — a local web UI for photo_analyzer.
|
|
|
|
Browse and full-text-search the analyzed photo library, watch analysis runs live,
|
|
and start/stop runs — all in the browser, reusing the nsfwtag review-app design.
|
|
Nothing leaves the machine (stdlib HTTP server bound to 127.0.0.1).
|
|
|
|
Entry point: python -m webapp [--db photo_analysis.db] [--library pictures/]
|
|
"""
|
|
__version__ = "0.1.0"
|
|
|
|
PAGE_SIZE = 120 # results per /search page (infinite scroll appends)
|