Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/crawlee/browsers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from crawlee._utils.try_import import install_import_hook as _install_import_hook
from crawlee._utils.try_import import try_import as _try_import

from ._types import BrowserType, CrawleePage

_install_import_hook(__name__)


Expand All @@ -15,4 +17,12 @@
with _try_import(__name__, 'PlaywrightPersistentBrowser'):
from ._playwright_browser import PlaywrightPersistentBrowser

__all__ = ['BrowserPool', 'PlaywrightBrowserController', 'PlaywrightBrowserPlugin', 'PlaywrightPersistentBrowser']

__all__ = [
'BrowserPool',
'BrowserType',
'CrawleePage',
'PlaywrightBrowserController',
'PlaywrightBrowserPlugin',
'PlaywrightPersistentBrowser',
]
Loading