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

12
run.py Normal file
View File

@@ -0,0 +1,12 @@
from dotenv import load_dotenv
import os
load_dotenv()
from app import create_app
app = create_app()
if __name__ == '__main__':
port = int(os.environ.get('PORT', 4001))
app.run(host='0.0.0.0', port=port)