Update markdown and initial code

This commit is contained in:
2026-02-02 09:27:49 +08:00
commit 7aea2ca2a8
11 changed files with 342 additions and 0 deletions

9
utils/stealth.py Normal file
View File

@@ -0,0 +1,9 @@
from playwright_stealth import Stealth
async def stealth_async(page):
"""
Apply stealth settings to the page.
Wrapper around Stealth().apply_stealth_async(page)
"""
stealth = Stealth()
await stealth.apply_stealth_async(page)