feat: initialize HTML scraper API with Flask and SeleniumBase

This commit is contained in:
2026-02-13 16:03:35 +01:00
commit 9659382d62
16 changed files with 1707 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from flask import Blueprint, jsonify
import logging
logger = logging.getLogger(__name__)
health_bp = Blueprint('health', __name__, url_prefix='/api')
@health_bp.route('/health', methods=['GET'])
def health_check():
logger.info("Health check requested")
return jsonify({"status": "ok"})