Results 1 comments of GGWA

hey I solved NotImplementedError in windows import asyncio from asyncio import ProactorEventLoop from crawl4ai import AsyncWebCrawler, CacheMode import streamlit as st asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy()) st.title("crawl4AI") if "crawl_result" not in st.session_state: st.session_state["crawl_result"] =...