mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 13:02:04 -08:00
- Python library now constrains the supported Camoufox version, and will force an update if you are out of date. - Added support patch for multiple accepted languages #37 - Added pysocks #43 - Added README deprecation notices - Added public launch_options command - Bumped python library to 0.3.0 - Full support for beta.12
13 lines
301 B
Python
13 lines
301 B
Python
from .addons import DefaultAddons
|
|
from .async_api import AsyncCamoufox, AsyncNewBrowser
|
|
from .sync_api import Camoufox, NewBrowser
|
|
from .utils import launch_options
|
|
|
|
__all__ = [
|
|
"Camoufox",
|
|
"NewBrowser",
|
|
"AsyncCamoufox",
|
|
"AsyncNewBrowser",
|
|
"DefaultAddons",
|
|
"launch_options",
|
|
]
|