mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-18 17:14:39 -04:00
13 lines
283 B
Python
13 lines
283 B
Python
__package__ = 'plugins_extractor.favicon'
|
|
|
|
|
|
from abx.archivebox.base_configset import BaseConfigSet
|
|
|
|
|
|
class FaviconConfig(BaseConfigSet):
|
|
SAVE_FAVICON: bool = True
|
|
|
|
FAVICON_PROVIDER: str = 'https://www.google.com/s2/favicons?domain={}'
|
|
|
|
|
|
FAVICON_CONFIG = FaviconConfig()
|