This commit is contained in:
LASTA_DEV01\lasta
2026-05-13 19:57:34 +09:00
parent 2e9204243d
commit 9e88f4c7ad
4310 changed files with 48538 additions and 905279 deletions

15
참고/test_crawl4ai.py Normal file
View File

@@ -0,0 +1,15 @@
import asyncio
from crawl4ai import AsyncWebCrawler
async def main():
async with AsyncWebCrawler() as crawler:
result = await crawler.arun(
url="https://the912.co.kr/"
)
print("SUCCESS:", result.success)
print("URL:", result.url)
print("\n--- MARKDOWN ---")
print(result.markdown[:2000])
asyncio.run(main())