mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-14 15:14:31 -04:00
18 lines
459 B
Python
18 lines
459 B
Python
__package__ = 'plugins_pkg.puppeteer'
|
|
|
|
|
|
from abx.archivebox.base_configset import BaseConfigSet
|
|
|
|
|
|
###################### Config ##########################
|
|
|
|
|
|
class PuppeteerConfig(BaseConfigSet):
|
|
PUPPETEER_BINARY: str = 'puppeteer'
|
|
# PUPPETEER_ARGS: Optional[List[str]] = Field(default=None)
|
|
# PUPPETEER_EXTRA_ARGS: List[str] = []
|
|
# PUPPETEER_DEFAULT_ARGS: List[str] = ['--timeout={TIMEOUT-10}']
|
|
pass
|
|
|
|
|
|
PUPPETEER_CONFIG = PuppeteerConfig()
|