Metadata-Version: 2.4
Name: browserBear
Version: 1.0.3
Summary: A protected browser automation library.
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: cloakbrowser[patchright]>=0.3.31
Requires-Dist: loguru>=0.7.3
Requires-Dist: patchright>=1.60.0

# browserBear

A high-performance, compiled browser automation and context pooling framework built for robust data extraction and seamless anti-bot evasion.

    import asyncio
    from browserBear.browsers import StealthBrowser
    async  def  main():
	    page =  await StealthBrowser.connect()
	    await page.safe_goto("https://example.com")
	    print(await page.title())
	    await page.clean()
	    await StealthBrowser.shutdown_all()
    
    if __name__ ==  "__main__":
	    asyncio.run(main())
