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

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "html-scraper"
version = "0.1.0"
description = "A simple API to scrape and return HTML content from any page using SeleniumBase"
requires-python = ">=3.11"
dependencies = [
"flask>=2.3.3,<4",
"flask-cors>=4.0.0,<5",
"gunicorn>=21.2.0,<23",
"python-dotenv>=1.0.0,<2",
"selenium>=4.15.2,<5",
"seleniumbase>=4.39.2,<5",
]
[dependency-groups]
dev = [
"pytest>=7.0",
]