Improved cookiejar handling for now
This commit is contained in:
parent
af42e3ba90
commit
e787779b58
|
@ -91,6 +91,19 @@ def available_scraper_names() -> list[str]:
|
||||||
return [scraper_cls.__name__ for scraper_cls in available_scrapers()]
|
return [scraper_cls.__name__ for scraper_cls in available_scrapers()]
|
||||||
|
|
||||||
|
|
||||||
|
def get_cookiejar(use_cookiejar: bool):
|
||||||
|
if use_cookiejar:
|
||||||
|
logger.warning('Got cookiejar from firefox')
|
||||||
|
cookiejar = browsercookie.firefox()
|
||||||
|
if len(cookiejar) > 10:
|
||||||
|
return cookiejar
|
||||||
|
browsercookie.firefox(['/home/jmaa/.cachy/mbui5xg7.default-release/cookies.sqlite'])
|
||||||
|
if len(cookiejar) > 10:
|
||||||
|
return cookiejar
|
||||||
|
logger.warning('No cookiejar is used')
|
||||||
|
return []
|
||||||
|
|
||||||
|
|
||||||
def main(
|
def main(
|
||||||
scraper_filter: frozenset[str],
|
scraper_filter: frozenset[str],
|
||||||
*,
|
*,
|
||||||
|
@ -98,12 +111,8 @@ def main(
|
||||||
ignore_cache: bool,
|
ignore_cache: bool,
|
||||||
notification_types: frozenset[notification.NotificationType],
|
notification_types: frozenset[notification.NotificationType],
|
||||||
) -> None:
|
) -> None:
|
||||||
if use_cookiejar:
|
cookiejar = get_cookiejar(use_cookiejar)
|
||||||
cookiejar = browsercookie.firefox()
|
logger.warning('Cookiejar has %s cookies', len(cookiejar))
|
||||||
logger.info('Got cookiejar from firefox: %s cookies', len(cookiejar))
|
|
||||||
else:
|
|
||||||
cookiejar = []
|
|
||||||
logger.warning('No cookiejar is used')
|
|
||||||
|
|
||||||
if len(notification_types) == 0:
|
if len(notification_types) == 0:
|
||||||
logger.info('No notifications enabled: Notifications will not be sent!')
|
logger.info('No notifications enabled: Notifications will not be sent!')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user