|
Latest Uploads |
Browse Latest Uploads |
Latest Uploads (Feed) |
Kindle Download Guide |
Formats |
Kindle (MOBI) |
Sony BBeB (LRF) |
ePub (EPUB) |
eBookwise (IMP) |
Miscellaneous |
Search Forums |
Advanced Search |
Attachment Search |
Find New Posts |
All New Posts |
- w/o E-Book Uploads |
Last 24 Hours |
Last 2 Days |
Last 5 Days |
Your Posts |
Go to Page... |
![]() |
|
Thread Tools | Search this Thread |
![]() |
#10351 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 96
Karma: 32768
Join Date: Dec 2012
Device: Kobo Glo HD, Kobo Clara HD
|
Not a bug or issue, just a question.
Is there a way to make FFF include parts of titles that are in brackets? I won't link it since it's NSFW on QQ, but there's a new story called "(End)Bringing You A New Home!" and when you download it with FFF the story title on Calibre is just "Bringing You A New Home!" I've noticed this with other fics in the past, but generally I only found those fics once they were done or dead, so I didn't worry about it, but this is a new (and I assume) updating fic. Thanks! |
![]() |
![]() |
![]() |
#10352 | |
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 6,691
Karma: 4600391
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
|
Quote:
Honestly, I just add a section to explicitly set the title when I run into cases like that: Code:
[https://forums.spacebattles.com/threads/guided-by-the-light-of-a-red-cameron-star-battletech.1064552/] add_to_replace_metadata: title=>^.*$=>Guided by the Light of a (Red) Cameron Star tagsfromtitle=>^ *Red *$=> |
|
![]() |
![]() |
![]() |
#10353 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 96
Karma: 32768
Join Date: Dec 2012
Device: Kobo Glo HD, Kobo Clara HD
|
Thanks for getting back to me!
|
![]() |
![]() |
![]() |
#10354 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Feb 2025
Device: Kindle Paperwhite 2024
|
Hi!
So I'm trying to edit the title page, cuz I just really like how it looks when you download an AZW3 file from AO3. (Which I included an image of. And it has the summary on a separate page.) Could I possible have some help recreating that? I attached the code below. I found some of Culterya's stuff again and used that as a basis. I've been at it for a few hours so any help would be appreciated. Spoiler:
# Add HTML to format the title page
titlepage_entries: rating,warnings,ao3categories,fandoms,ships,charac ters,freeformtags,language,description titlepage_start:<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>${title} by ${author}</title> <link href="stylesheet.css" type="text/css" charset="UTF-8" rel="stylesheet"/> <meta name="calibre-html-render-data"/> </head> <body> <div class="title"> <h1><a href="${storyUrl}">${title}</a> by ${authorHTML}</h1> </div> titlepage_entry: <dt><b>${label}:</b></dt> <dd>${value}</dd> </body> </html> |
![]() |
![]() |
![]() |
#10355 | |
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 6,691
Karma: 4600391
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
|
Quote:
This works for me and is at least similar: Spoiler:
Code:
[archiveofourown.org:epub] add_to_output_css: dl.titlepagelist dd { margin: 0 0 1em 1em; } div.title { font-weight: bold; text-align: center; } # Add HTML to format the title page titlepage_entries: rating,warnings,ao3categories,fandoms,ships,characters,freeformtags,language,<div style="page-break-after: always"></div>,description titlepage_start: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>${title} by ${author}</title> <link href="stylesheet.css" type="text/css" charset="UTF-8" rel="stylesheet"/> <meta name="calibre-html-render-data"/> </head> <body> <div class="title"> <a href="${storyUrl}">${title}</a> by ${authorHTML} </div> <dl class="titlepagelist"> titlepage_entry: <dt><b>${label}:</b></dt> <dd>${value}</dd> titlepage_end: </dl> </body> </html> |
|
![]() |
![]() |
![]() |
#10356 |
Member
![]() Posts: 24
Karma: 10
Join Date: Dec 2023
Device: Kindle Scribe
|
MultiSeries Replace Metadata Issues
chatgpt is full of good ideas, but it has failed me, so i am back again. at the bottom is my full general ini, minus character-specific irrelevant replace_metadata lines, for reference.
the issue: i have set up a MultiSeries custom column, because the calibre default Series column/value field can only show one series. it seems to work, and the titlepages of each work also properly reflect each series [1] [2] etc. as defined by the rules i wrote in my ini. however, for some reason, i am incapable of making replace_metadata rules for multiseries. the works in question have two series tagged to them: one with a "- Recommended Reading Order" at the end of it. this is redundant, so i want to remove that series tag entirely. i tried both of the below, and each seems to work when not being interfered with by stuff in my [defaults] ini: Spoiler:
Code:
exclude_metadata_pre: series=>.*Recommended Reading Order.* & replace_metadata: series=>.*Recommended Reading Order.*=> troubleshooting has led me to identify that the specific part of my ini that is causing my issue is something in these three lines: Spoiler:
Code:
titlepage_entries:series00HTML,series01HTML,series02HTML,series03HTML,series04HTML,<br />,category,ships,characters,<br />,calibre_std_rating,status,rating,warnings,ao3categories,bookmarktags,<br /> include_in_series:true custom_columns_settings: series00=>#multiseries,a series01=>#multiseries,a series02=>#multiseries,a series03=>#multiseries,a series04=>#multiseries,a if i remove the above lines, everything works just fine. the titlepage & multiseries column both reflect only the one series tag, not the redundant one, which is what i'm going for. but not having these lines (especially the titlepage_entries) screws up the rest of my titlepage. if i add any combination of these back into the ini, it removes everything from the multiseries column entirely, or it keeps the multiseries column in calibre correct but shows both series' on the titlepage, or shows both series' tags on both the titlepage and in the multiseries column, etc. everything gets wonky. suffice it to say i have tried 11 different iterations of the replace_metadata line in varying degrees of broadness v.s. specificity, deleting works entirely and then redownloading fresh, restarting calibre to make sure ini changes are applied and caches are cleared, manually clearing series & multiseries columns before updating to see what is being overwritten and how, removing & reapplying my entire [defaults] [epub] [html] & [archiveofourown.org] ini sections line by line to identify where things are going wrong, among other things. i cannot figure out a resolution, and both chatgpt & i are out of ideas. i'm sure it's something simple, it usually is, but i'm at a loss and can't find anything relevant even here in the forum for fanficfare. any ideas of what i'm doing wrong, from anyone here? ![]() ![]() ![]() relevant personal ini: Spoiler:
Code:
# Copyright 2015 Fanficdownloader team, 2021 FanFicFare team [defaults] title_label:Title storyUrl_label:Title author_label:Byline authorUrl_label:Byline authorHTML_label:Byline description_label:Summary formatname_label:File Format formatext_label:File Extension category_label:Category genre_label:Genre language_label:Language characters_label:Characters ships_label:Relationships series_label:Series seriesUrl_label:Series seriesHTML_label:Series status_label:Status datePublished_label:Published dateUpdated_label:Updated dateCreated_label:Packaged rating_label:Rating warnings_label:Warnings numChapters_label:Chapters numWords_label:Words site_label:Publisher siteabbrev_label:Site Abbrev storyId_label:Story ID authorId_label:Author ID extratags_label:Extra Tags version_label:Downloader Version include_in_publisher:site publisher_label:Publisher dateCreated_format:%%m-%%d-%%Y %%H:%%M:%%S datePublished_format:%%m-%%d-%%Y dateUpdated_format:%%m-%%d-%%Y titlepage_entries:series00HTML,series01HTML,series02HTML,series03HTML,series04HTML,<br />,category,ships,characters,<br />,calibre_std_rating,status,rating,warnings,ao3categories,bookmarktags,<br /> extra_titlepage_entries:chapterslashtotal,numWords,bookmarks,kudos,comments,hits,datePublished,dateUpdated,authorHTML,collections,<br />,freeformtags,<br />,description extra_valid_entries:series00,series01,series02,series03,series04 include_in_series:true custom_columns_settings: series00=>#multiseries,a series01=>#multiseries,a series02=>#multiseries,a series03=>#multiseries,a series04=>#multiseries,a collect_series:true include_subject_tags:extratags,genre,category,characters,ships,status,series,series00,series01,series02,series03,series04 include_titlepage:true include_tocpage:true allow_unsafe_filename:false output_filename_safepattern:(^\.|/\.|[^a-zA-Z0-9_\. \[\]\(\)&'-]+) connect_timeout:60.0 conditionals_use_lists:true keep_summary_html:true keep_html_attrs:href,name,class,id,colspan,rowspan,data-orighref remove_class_chapter:true replace_tags_with_spans:u,big,small keep_empty_tags:p,td,th remove_tags:script,style title_chapter_range_pattern:${title} (Ch ${first}-${last}) strip_chapter_numbers:true add_chapter_numbers:false chapter_title_strip_pattern:^[0-9]+[\.: -]+(?=[^0-9]|$) mark_new_chapters:false chapter_title_def_pattern:${title} chapter_title_add_pattern:${number}. ${title} chapter_title_new_pattern:(new) ${title} chapter_title_addnew_pattern:${number}. (new) ${title} anthology_title_pattern:${title} Anthology anthology_tags:Anthology sort_ships:true sort_ships_splits: [ ]*/[ ]*=>/ [ ]*&[ ]*=>\s&\s user_agent:FFF/4.X browser_cache_age_limit:4.0 continue_on_chapter_error:false chapter_title_error_mark:(CHAPTER ERROR) normalize_text_links:true fix_relative_text_links:true internalize_text_links:true use_basic_cache:true ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ [epub] titlepage_start:<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>${title}</title> <link href="stylesheet.css" type="text/css" charset="UTF-8" rel="stylesheet"/> </head> <body class="fff_titlepage"> <h3><a href="${storyUrl}">${title}</a></h3> <div> titlepage_entry:<b class="fff_tp_label" id="${id}_label">${label}:</b> <span class="fff_tp_value" id="${id}_value">${value}</span><br /> wide_titlepage_entries:<b class="fff_tp_label" id="${id}_label">${label}:</b> <span class="fff_tp_value" id="${id}_value">${value}</span><br /> add_to_output_css: #description_value { font-style: italic; } div.fff_chapter_notes { font-weight: bold; } epub_version:2.0 zip_output:false include_tocpage:false include_logpage:false logpage_at_end:false logpage_entries:dateCreated,datePublished,dateUpdated,numChapters,numWords,status,series,title,author,description,category,genre,rating,warnings titlepage_use_table:false background_color: ffffff output_css: body { background-color: #%(background_color)s; text-align: justify; margin: 2%%; adobe-hyphenate: none; } pre { font-size: x-small; } h1 { text-align: center; } h2 { text-align: center; } h3 { text-align: center; } h4 { text-align: center; } h5 { text-align: center; } h6 { text-align: center; } .CI { text-align:center; margin-top:0px; margin-bottom:0px; padding:0px; } .center {text-align: center;} .cover {text-align: center;} .full {width: 100%%; } .quarter {width: 25%%; } .smcap {font-variant: small-caps;} .u {text-decoration: underline;} .bold {font-weight: bold;} .big { font-size: larger; } .small { font-size: smaller; } include_images:true jpg_quality: 95 make_firstimage_cover: true image_max_size: 580, 725 convert_images_to: jpg remove_transparency: true nook_img_fix:true ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ [html] no_image_processing: true background_color: ffffff output_css: body { background-color: #%(background_color)s; } .CI { text-align:center; margin-top:0px; margin-bottom:0px; padding:0px; } .center {text-align: center;} .cover {text-align: center;} .full {width: 100%%; } .quarter {width: 25%%; } .smcap {font-variant: small-caps;} .u {text-decoration: underline;} .bold {font-weight: bold;} .big { font-size: larger; } .small { font-size: smaller; } ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ## AO3 General Defaults [archiveofourown.org] username: *username* password: *password* is_adult:true collect_series: true always_login:true use_view_full_work:true extra_valid_entries:fandoms,freeformtags,ao3categories,comments,chapterslashtotal,kudos,hits,bookmarks,collections,bookmarktags,series00,series01,series02,series03,series04,series00Url,series01Url,series02Url,series03Url,series04Url,series00HTML,series01HTML,series02HTML,series03HTML,series04HTML category_label:Fandom fandoms_label:Fandom freeformtags_label:Additional Tags ao3categories_label:Genres comments_label:Comments chapterslashtotal_label:Chapters kudos_label:Kudos hits_label:Hits collections_label:Collections bookmarks_label:Bookmarks bookmarktags_label:Primary Pair series00HTML_label:Series[1] series01HTML_label:Series[2] series02HTML_label:Series[3] series03HTML_label:Series[4] series04HTML_label:Series[5] keep_in_order_ships:true keep_in_order_category:true keep_in_order_characters:true keep_in_order_genre:true keep_in_order_collections:true keep_in_order_ao3categories:true keep_in_order_freeformtags:true make_linkhtml_entries:series00,series01,series02,series03,series04 include_in_genre: freeformtags, ao3categories include_in_category:fandoms include_in_freefromtags:freeformtags include_in_chapterstotal:chapterslashtotal.NOREPL add_to_replace_metadata: chapterstotal=>^([0-9])+/(.+)$=>\2 slow_down_sleep_time:2 ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ ## General Exclusions exclude_metadata_pre: series=>.*Recommended Reading Order.* characters=>.*/.* ships=>.*&.* characters,ships=>\(Platonic\) characters,ships=>Reader characters,ships=>You characters,ships=>Original Male Character\(s\) characters,ships=>Original Male Character characters,ships=>Original Female Character\(s\) characters,ships=>Original Female Character characters,ships=>Original Character\(s\) characters,ships=>Original Characters characters=>Original Animal Character\(s\) characters=>Other Character Tags to Be Added characters,ships=>others mentioned characters,ships=>others characters,ships=>Other\(s\) characters,ships=>Original Witcher Character\(s\) characters,ships=>Original Dwarf Character\(s\) characters,ships=>Original Daemon Character\(s\) characters,ships=>Original Nonbinary Character\(s\) characters,ships=>Original Non-Binary Character characters,ships=>Original Child Character\(s\) characters,ships=>Assorted OCs characters,ships=>Minor Characters category=>Original Work ## General Replacements replace_metadata: series=>.*Recommended Reading Order.*=> extratags=>(.*)[FanFiction](.*)=> extratags=>.*[Nn]o beta.*=>Not Beta Read extratags=>.*[Uu]nbeta.*=>Not Beta Read extratags=>.*[Ss]low [Bb]urn.*=>Slow Burn extratags=>.*slowburn.*=>Slow Burn extratags=>.*[Ff]ix[Ii]t.*=>Fix-It extratags=>^[Ff]ix [Ii]t=>Fix-It characters=> - Character=> characters=>various useless OCs=> ships=>\b([^/]+)/([^/]+)=>\1/\2 characters,ships=>.*[Mm]ention(?:ed| of).*=> characters,ships=>.*[Bb]ackground.*=> characters,ships=>.*[Pp]ast.*=> characters,ships=>.*[Ii]mplied.*=> characters,ships=>.*[Rr]elationship.*=> characters,ships=>.*[Rr]eferenced.*=> characters,ships=>.*[Ee]nsemble.*=> characters,ships=>.*[Bb]rief.*=> ships=>Original=> calibre_std_rating=>1=>★ calibre_std_rating=>2=>★★ calibre_std_rating=>3=>★★★ calibre_std_rating=>4=>★★★★ calibre_std_rating=>5=>★★★★★ ##☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ Last edited by TaviCalderon; Yesterday at 10:29 PM. |
![]() |
![]() |
![]() |
#10357 |
Plugin Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 6,691
Karma: 4600391
Join Date: Dec 2011
Location: Midwest USA
Device: Kindle Paperwhite(10th)
|
|
![]() |
![]() |
![]() |
#10358 |
Member
![]() Posts: 24
Karma: 10
Join Date: Dec 2023
Device: Kindle Scribe
|
whoop, knew i forgot something. this is the work in question i've been testing with! any of them in the series would work for testing, though. there's like 45.
https://archiveofourown.org/works/24041545 thanks! |
![]() |
![]() |
![]() |
#10359 |
Enthusiast
![]() Posts: 43
Karma: 10
Join Date: Oct 2014
Device: Kindle Fire HD
|
Is it possible to set FFF to download the fic chapters from the browser cache, but query the actual image links to get images? Cause there are some websites where, while you're forced to use the browser cache to get chapters from fics because they implement (strict) Cloudflare, the images are hosted externally and therefore can be normally queried.
If this were possible, would it provide a solution to how downloading Ao3 fics from cache don't properly include images? Or is that a separate problem? Last edited by watani; Today at 01:14 AM. |
![]() |
![]() |
![]() |
#10360 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Feb 2025
Device: Kindle Paperwhite 2024
|
OMG thank you!
So I took a look at the output code, I even add the CSS that you had on there and set my justification to left I'm still trying to get a few things working on the title page. I noticed that you had the wide titlepage entry and that's for like tables. So basically it'd be columns right? So how would I set one up for having word count, published date, updated date, and chapters all on one line? and possibly kudos, hits, and bookmarks too. Oh, and I seem to have lost the summary? It's not showing up on the title page anymore. And, one more thing, if you don't mind, could I have it say Additional Tags: for the tags? How would I change that? Would that be a simple extravalid entry thing? Spoiler:
# Add HTML to format the title page
titlepage_entries: rating,warnings,ao3categories,fandoms,ships,charac ters,freeformtags,language,collections,kudos,hits, bookmarks,numWords,numChapters,datePublished,dateU pdated,</hr>,description titlepage_start: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>${title} by ${author}</title> <link href="stylesheet.css" type="text/css" charset="UTF-8" rel="stylesheet"/> <meta name="calibre-html-render-data"/> </head> <body> <div class="title"> <a href="${storyUrl}">${title}</a> by ${authorHTML} </div> <dl class="titlepagelist"> titlepage_entry: <dt><b>${label}:</b></dt> <dd>${value}</dd> ## When using tables, make these span both columns. wide_titlepage_entries: storyUrl, author URL,numword, ## ${id}, ${label}, ${value} ## Used with entries listed in wide_titlepage_entries, typically description, storyUrl, authorUrl titlepage_wide_entry: titlepage_end: </dl> </body> </html> Thank you for all your help! I really appreciate it |
![]() |
![]() |
![]() |
#10361 | |
Member
![]() Posts: 10
Karma: 10
Join Date: May 2019
Device: Kindle PW3, Marvin 3 on iPhone X
|
Quote:
Meanwhile, selecting the problematic fanfics in Calibre's main browser and trying to update them again results in an immediate termination (usually Fanficfare takes quite a while fetching metadata and so on) and no new listing in the 'job' panel (so the only error logs I'm getting are the basic 'not found or expired in cache' type messages). Updating from email with the same story results in the usual metadata fetching and pages opening in Firefox though. Is this expected behaviour? Attached job details in case it helps clear anything up: Spoiler:
Download 33 FanFiction Book(s)
Failed to initialize plugin: '/Users/redacted/Library/Preferences/calibre/plugins/DeDRM.zip' FFF: INFO: 2025-02-16 10:48:01,996: calibre_plugins.fanficfare_plugin.jobs(49): CPUs:10 FFF: INFO: 2025-02-16 10:48:01,996: calibre_plugins.fanficfare_plugin.jobs(52): FanFicFare v4.42.0 calibre 7.24 embedded-python: True macOS-14.2.1-arm64-arm-64bit Darwin ('64bit', '') ('Darwin', '23.2.0', 'Darwin Kernel Version 23.2.0: Wed Nov 15 21:53:18 PST 2023; root:xnu-10002.61.3~2/RELEASE_ARM64_T6000') Python 3.11.5 OSX: ('14.2.1', ('', '', ''), 'arm64') Interface language: None EXE path: /Applications/calibre.app/Contents/MacOS/calibre-parallel Successfully initialized third party plugins: Annotations (1, 17, 13) && Chinese Text Conversion (3, 0, 1) && Count Pages (1, 13, 6) && Entities Manager (1, 0, 19) && EpubMerge (3, 2, 0) && FanFicFare (4, 42, 0) && Find Duplicates (1, 10, 9) && Generate Cover (2, 3, 5) && Kindle Collections (1, 7, 29) && Reading List (1, 15, 4) && View Manager (1, 10, 3) FFF: INFO: 2025-02-16 10:48:02,035: calibre_plugins.fanficfare_plugin.jobs(73): Launch background process for site archiveofourown.org: https://archiveofourown.org/works/63095977 https://archiveofourown.org/works/60279193 https://archiveofourown.org/works/45542815 https://archiveofourown.org/works/62654551 https://archiveofourown.org/works/57894925 https://archiveofourown.org/works/62153836 https://archiveofourown.org/works/63114085 https://archiveofourown.org/works/62474713 https://archiveofourown.org/works/60370327 https://archiveofourown.org/works/63106525 https://archiveofourown.org/works/55285567 https://archiveofourown.org/works/63118021 https://archiveofourown.org/works/62034520 https://archiveofourown.org/works/63106588 https://archiveofourown.org/works/4566726 https://archiveofourown.org/works/62805346 https://archiveofourown.org/works/26980552 https://archiveofourown.org/works/63106225 https://archiveofourown.org/works/23889022 https://archiveofourown.org/works/63093589 https://archiveofourown.org/works/63025459 https://archiveofourown.org/works/39323223 https://archiveofourown.org/works/6448987 https://archiveofourown.org/works/63104056 https://archiveofourown.org/works/62935378 https://archiveofourown.org/works/63097162 https://archiveofourown.org/works/63107011 https://archiveofourown.org/works/62655478 https://archiveofourown.org/works/48128839 https://archiveofourown.org/works/59704243 https://archiveofourown.org/works/63114220 FFF: INFO: 2025-02-16 10:48:02,035: calibre_plugins.fanficfare_plugin.jobs(73): Launch background process for site www.fanfiction.net: https://www.fanfiction.net/s/1443041...nd-Friendships https://www.fanfiction.net/s/14432506/1/Darkness FFF: INFO: 2025-02-16 10:49:59,457: calibre_plugins.fanficfare_plugin.jobs(135): ================================================== ============================== site:(www.fanfiction.net) Failed to initialize plugin: '/Users/redacted/Library/Preferences/calibre/plugins/DeDRM.zip' FFF: INFO: 2025-02-16 10:48:03,176: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:03,189: configurable.py(1084): use_browser_cache:true FFF: DEBUG: 2025-02-16 10:48:03,189: configurable.py(1086): browser_cache_path:/Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2 FFF: DEBUG: 2025-02-16 10:48:03,194: browsercache_firefox2.py(45): Using FirefoxCache2 FFF: DEBUG: 2025-02-16 10:48:03,194: configurable.py(1104): use_basic_cache:true FFF: DEBUG: 2025-02-16 10:48:03,196: adapter_fanfictionnet.py(119): URL: https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:03,196: cache_basic.py(116): ========== HIT (GET) BasicCache https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:03,196: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:03,240: adapter_fanfictionnet.py(156): =Trying newer chapter: https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:03,241: cache_basic.py(116): ========== HIT (GET) BasicCache https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:03,241: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:03,241: adapter_fanfictionnet.py(160): =======Found newer chapter: https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:03,290: adapter_fanfictionnet.py(323): cover_url:/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,290: base_adapter.py(611): setCoverImage(https://www.fanfiction.net/s/1443041...e/7110711/180/) FFF: DEBUG: 2025-02-16 10:48:03,290: story.py(1545): addImgUrl(parenturl=https://www.fanfiction.net/s/14430413/1/Of-Crab-and-Friendships,url=/image/7110711/180/,cover=specific,coverexclusion=(/imageu/|d_60_90\.jpg) FFF: DEBUG: 2025-02-16 10:48:03,290: cache_basic.py(116): ========== MISS (GET) BasicCache https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,290: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,290: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,291: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:03,291: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,291: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,291: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:03,291: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,291: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:03,291: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:03,291: cache_browser.py(72): open page in browser: https://www.fanfiction.net/image/7110711/180/ tries:None This plugin does not support QPlatformServices::openUrl() for 'https://www.fanfiction.net/image/7110711/180/'. QDesktopServices::openUrl() failed for url: PyQt6.QtCore.QUrl('https://www.fanfiction.net/image/7110711/180/') FFF: DEBUG: 2025-02-16 10:48:05,942: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:05,943: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:05,943: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:05,943: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:05,944: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:05,944: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:05,944: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:05,944: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:05,944: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:05,944: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:07,949: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:07,949: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:07,950: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:07,950: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:07,950: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:07,950: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:07,950: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:07,950: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:07,950: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:07,950: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:11,955: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:11,957: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:11,957: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:11,957: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:11,957: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:11,957: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:11,957: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:11,957: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:11,957: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:11,958: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:16,965: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:16,965: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:16,965: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:16,965: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:16,965: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:16,965: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:16,965: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:16,966: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:16,966: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:16,966: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:22,976: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:22,977: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:22,977: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:22,977: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:22,977: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:22,978: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:22,978: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:22,978: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:22,978: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:22,978: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:22,979: cache_browser.py(72): open page in browser: https://www.fanfiction.net/image/7110711/180/ tries:1 This plugin does not support QPlatformServices::openUrl() for 'https://www.fanfiction.net/image/7110711/180/'. QDesktopServices::openUrl() failed for url: PyQt6.QtCore.QUrl('https://www.fanfiction.net/image/7110711/180/') FFF: DEBUG: 2025-02-16 10:48:24,985: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:24,986: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:24,986: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:24,987: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:24,987: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:24,987: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:24,987: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:24,987: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:24,987: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:24,987: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:26,989: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:26,990: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:26,990: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:26,990: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:26,990: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:26,991: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:26,991: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:26,991: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:26,991: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:26,991: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:30,994: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:30,994: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:30,994: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:30,994: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:30,994: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:30,995: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:30,995: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:30,995: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:30,995: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:30,995: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:36,005: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:36,005: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:36,005: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:36,005: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:36,005: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:36,005: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:36,005: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:36,005: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:36,005: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:36,005: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:42,015: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:42,016: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:42,016: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:42,016: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/A1D482905DB80B57A0668442562FCF31DD6F2303 FFF: DEBUG: 2025-02-16 10:48:42,017: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:42,017: browsercache_firefox2.py(90): :https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:42,017: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/F252ABE60521834949809871EEE7218888D5C533 FFF: DEBUG: 2025-02-16 10:48:42,017: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:42,017: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/image/7110711/180/ FFF: DEBUG: 2025-02-16 10:48:42,017: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5131298236B8508160636DBBE5F8D984CA102613 FFF: DEBUG: 2025-02-16 10:48:42,018: cache_browser.py(94): ========== MISS (GET) BrowserCache https://www.fanfiction.net/image/7110711/180/ FFF: INFO: 2025-02-16 10:48:42,019: story.py(1674): Failed to load or convert image, parent:https://www.fanfiction.net/s/1443041...nd-Friendships skipping:https://www.fanfiction.net/image/7110711/180/ Exception: HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/image/7110711/180/' FFF: DEBUG: 2025-02-16 10:48:42,042: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:48:42,221: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(10) vs url(12) FFF: INFO: 2025-02-16 10:48:42,221: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Of Crab and Friendships-enidwilson-395m5_94.epub FFF: INFO: 2025-02-16 10:48:42,236: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Of Crab and Friendships-enidwilson-395m5_94.epub FFF: DEBUG: 2025-02-16 10:48:42,551: adapter_fanfictionnet.py(389): Getting chapter text from: https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: cache_basic.py(116): ========== MISS (GET) BasicCache https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:48:42,551: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:48:42,551: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:42,551: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:48:42,551: cache_browser.py(72): open page in browser: https://www.fanfiction.net/s/1443041...nd-Friendships tries:2 This plugin does not support QPlatformServices::openUrl() for 'https://www.fanfiction.net/s/14430413/9/Of-Crab-and-Friendships'. QDesktopServices::openUrl() failed for url: PyQt6.QtCore.QUrl('https://www.fanfiction.net/s/14430413/9/Of-Crab-and-Friendships') FFF: DEBUG: 2025-02-16 10:48:44,564: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:44,565: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:44,565: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:44,565: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:48:44,566: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:44,566: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:44,566: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:48:44,566: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:44,566: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:44,566: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:48:46,569: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:46,569: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:46,570: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:46,570: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:48:46,570: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:46,570: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:46,570: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:48:46,570: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:46,570: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:46,570: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:48:50,575: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:50,575: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:50,575: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:50,576: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:48:50,578: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:50,578: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:50,578: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:48:50,578: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:50,578: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:50,579: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:48:55,587: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:48:55,587: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:55,588: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:55,588: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:48:55,588: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:55,588: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:55,588: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:48:55,588: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:55,588: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:48:55,588: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:49:01,596: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:01,597: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:01,597: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:01,597: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:49:01,598: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:01,598: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:01,598: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:49:01,598: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:01,598: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:01,598: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:49:01,599: cache_browser.py(72): open page in browser: https://www.fanfiction.net/s/1443041...nd-Friendships tries:3 This plugin does not support QPlatformServices::openUrl() for 'https://www.fanfiction.net/s/14430413/9/Of-Crab-and-Friendships'. QDesktopServices::openUrl() failed for url: PyQt6.QtCore.QUrl('https://www.fanfiction.net/s/14430413/9/Of-Crab-and-Friendships') FFF: DEBUG: 2025-02-16 10:49:03,603: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:03,605: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:03,605: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:03,606: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:49:03,606: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:03,606: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:03,606: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:49:03,606: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:03,606: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:03,606: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:49:05,610: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:05,612: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:05,612: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:05,612: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:49:05,612: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:05,612: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:05,613: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:49:05,613: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:05,613: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:05,613: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:49:09,620: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:09,620: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:09,620: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:09,620: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:49:09,620: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:09,620: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:09,620: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:49:09,620: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:09,620: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:09,620: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:49:14,627: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:14,627: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:14,628: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:14,628: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:49:14,628: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:14,628: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:14,628: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:49:14,628: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:14,629: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:14,629: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:49:20,638: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:20,639: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,639: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,639: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/6858249711662ED3E4D48C08DA7D175A65C5A30F FFF: DEBUG: 2025-02-16 10:49:20,639: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,640: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,640: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/368882B7406BC08013548C93CFC0E548EFC9016F FFF: DEBUG: 2025-02-16 10:49:20,640: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,640: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,640: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/629200101DE47134D07E2C56D3498083DF3B654D FFF: DEBUG: 2025-02-16 10:49:20,641: cache_browser.py(94): ========== MISS (GET) BrowserCache https://www.fanfiction.net/s/1443041...nd-Friendships FFF: INFO: 2025-02-16 10:49:20,652: base_adapter.py(285): continue_on_chapter_error: (https://www.fanfiction.net/s/1443041...nd-Friendships) HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/s/14430413/9/Of-Crab-and-Friendships' FFF: DEBUG: 2025-02-16 10:49:20,653: base_adapter.py(286): Traceback (most recent call last): File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/adapters/base_adapter.py", line 265, in getStory data = self.getChapterTextNum(url,index) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/adapters/base_adapter.py", line 453, in getChapterTextNum return self.getChapterText(url) ^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/adapters/adapter_fanfictionnet.py", line 393, in getChapterText data = self.get_request(url) ^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/requestable.py", line 119, in get_request return self.get_request_redirected(url, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/requestable.py", line 111, in get_request_redirected (data,rurl) = self.configuration.get_fetcher().get_request_redir ected( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/base_fetcher.py", line 133, in get_request_redirected fetchresp = self.do_request('GET', ^^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/cache_basic.py", line 122, in fetcher_do_request fetchresp = chainfn( ^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/decorators.py", line 102, in fetcher_do_request fetchresp = chainfn( ^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/cache_browser.py", line 103, in fetcher_do_request raise exceptions.HTTPErrorFFF( fanficfare.exceptions.HTTPErrorFFF: HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/s/14430413/9/Of-Crab-and-Friendships' FFF: DEBUG: 2025-02-16 10:49:20,755: adapter_fanfictionnet.py(389): Getting chapter text from: https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,756: cache_basic.py(116): ========== MISS (GET) BasicCache https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,756: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,756: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,756: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/57ED19CB070D287AF332A23FFC5D4323A5FBD396 FFF: DEBUG: 2025-02-16 10:49:20,758: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,758: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,758: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/296E3CEA3EB4C4F8D7591F76B15D2ED092D4A9E8 FFF: DEBUG: 2025-02-16 10:49:20,758: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,758: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,758: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5FBEF251F24AFBE701AEFFB479A988B9043D19A3 FFF: DEBUG: 2025-02-16 10:49:20,758: base_browsercache.py(110): age:2025-02-16 10:33:25 FFF: DEBUG: 2025-02-16 10:49:20,758: base_browsercache.py(111): now:2025-02-16 10:49:20.758505 FFF: DEBUG: 2025-02-16 10:49:20,758: cache_browser.py(94): ========== HIT (GET) BrowserCache https://www.fanfiction.net/s/1443041...nd-Friendships FFF: DEBUG: 2025-02-16 10:49:20,759: cache_browser.py(98): domain_open_tries:{'www.fanfiction.net': 0}: FFF: DEBUG: 2025-02-16 10:49:20,759: cache_browser.py(99): fromcache:True FFF: DEBUG: 2025-02-16 10:49:20,759: decorators.py(112): fromcache:True FFF: DEBUG: 2025-02-16 10:49:20,759: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:49:20,869: writer_epub.py(369): Saving EPUB Version 2.0 FFF: DEBUG: 2025-02-16 10:49:20,877: writer_epub.py(525): using old cover FFF: INFO: 2025-02-16 10:49:21,161: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,171: configurable.py(1084): use_browser_cache:true FFF: DEBUG: 2025-02-16 10:49:21,172: configurable.py(1086): browser_cache_path:/Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2 FFF: DEBUG: 2025-02-16 10:49:21,175: browsercache_firefox2.py(45): Using FirefoxCache2 FFF: DEBUG: 2025-02-16 10:49:21,175: configurable.py(1104): use_basic_cache:true FFF: DEBUG: 2025-02-16 10:49:21,175: adapter_fanfictionnet.py(119): URL: https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: cache_basic.py(116): ========== MISS (GET) BasicCache https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:21,176: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:21,176: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:21,176: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:21,176: cache_browser.py(72): open page in browser: https://www.fanfiction.net/s/14432506/1/Darkness tries:0 This plugin does not support QPlatformServices::openUrl() for 'https://www.fanfiction.net/s/14432506/1/Darkness'. QDesktopServices::openUrl() failed for url: PyQt6.QtCore.QUrl('https://www.fanfiction.net/s/14432506/1/Darkness') FFF: DEBUG: 2025-02-16 10:49:23,186: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:23,186: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:23,186: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:23,186: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:23,186: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:23,186: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:23,186: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:23,186: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:23,186: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:23,186: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:25,197: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:25,197: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:25,197: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:25,197: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:25,197: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:25,197: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:25,198: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:25,198: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:25,198: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:25,198: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:29,201: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:29,201: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:29,202: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:29,202: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:29,202: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:29,202: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:29,202: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:29,203: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:29,203: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:29,203: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:34,208: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:34,209: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:34,209: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:34,209: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:34,210: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:34,210: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:34,210: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:34,210: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:34,210: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:34,210: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:40,220: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:40,221: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:40,221: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:40,222: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:40,222: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:40,222: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:40,222: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:40,222: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:40,222: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:40,222: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:40,224: cache_browser.py(72): open page in browser: https://www.fanfiction.net/s/14432506/1/Darkness tries:1 This plugin does not support QPlatformServices::openUrl() for 'https://www.fanfiction.net/s/14432506/1/Darkness'. QDesktopServices::openUrl() failed for url: PyQt6.QtCore.QUrl('https://www.fanfiction.net/s/14432506/1/Darkness') FFF: DEBUG: 2025-02-16 10:49:42,228: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:42,228: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:42,228: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:42,229: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:42,229: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:42,229: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:42,229: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:42,229: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:42,229: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:42,229: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:44,232: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:44,233: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:44,233: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:44,233: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:44,233: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:44,233: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:44,233: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:44,234: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:44,234: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:44,234: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:48,239: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:48,239: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:48,239: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:48,240: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:48,240: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:48,240: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:48,240: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:48,240: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:48,240: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:48,240: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:53,244: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:53,245: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:53,245: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:53,245: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:53,245: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:53,245: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:53,245: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:53,245: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:53,246: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:53,246: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:59,253: cache_browser.py(82): Checking for cache... FFF: DEBUG: 2025-02-16 10:49:59,254: base_browsercache.py(95): Cache Key:O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:59,254: browsercache_firefox2.py(90): O^partitionKey=%28https%2Cfanfiction.net%29,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:59,255: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/5D2564A8468888B8B2B86EFA711D4B1F989FFF97 FFF: DEBUG: 2025-02-16 10:49:59,255: base_browsercache.py(95): Cache Key::https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:59,255: browsercache_firefox2.py(90): :https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:59,255: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/645C729B8573F4B6887BE09B2989A006AC772B48 FFF: DEBUG: 2025-02-16 10:49:59,255: base_browsercache.py(95): Cache Key:~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:59,256: browsercache_firefox2.py(90): ~FETCH,:https://www.fanfiction.net/s/14432506/1/Darkness FFF: DEBUG: 2025-02-16 10:49:59,256: browsercache_firefox2.py(94): /Users/redacted/Library/Caches/Firefox/Profiles/y4x4faz1.default-1671202703436/cache2/entries/9C60CB10054DC1A6266E03AC816DCBF8F3F11E64 FFF: DEBUG: 2025-02-16 10:49:59,257: cache_browser.py(94): ========== MISS (GET) BrowserCache https://www.fanfiction.net/s/14432506/1/Darkness FFF: INFO: 2025-02-16 10:49:59,258: calibre_plugins.fanficfare_plugin.jobs(450): Exception: {'title': 'Darkness', 'author_sort': ['sakurademonalchemist'], 'author': ['sakurademonalchemist'], 'comments': "Not all princesses are damsels in distress. Some are dragons in disguise. Melanie Draconia, adopted daughter of Malleus, has no patience for the schemes of man, much less the human run Ministry. They're in for a nasty surprise if they think she's going to let them dictate how she's going to live her life. A Princesses' work is never done. Melanie/Silver/Sebek", 'good': False, 'status': 'Error', 'showerror': True, 'calibre_id': 69442, 'begin': None, 'end': None, 'comment': "HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/s/14432506/1/Darkness'", 'url': 'https://www.fanfiction.net/s/14432506/1/Darkness', 'site': 'www.fanfiction.net', 'series': '', 'added': False, 'pubdate': datetime.datetime(2025, 1, 19, 4, 36, 10, tzinfo=datetime.timezone(datetime.timedelta(second s=28800), 'HKT')), 'publisher': 'www.fanfiction.net', 'uniqueurl': 'https://www.fanfiction.net/s/14432506/1/Darkness[None-None]', 'listorder': 16, 'collision': 'Update EPUB if New Chapters', 'is_adult': False, 'username': 'NoneGiven', 'password': '', 'icon': 'dialog_error.png', 'all_metadata': {'category': 'Disney: Twisted Wonderland/ディズニー ツイステッドワンダーランド, Harry Potter', 'genre': 'Family, Fantasy', 'characters': 'Harry P.', 'ships': '', 'warnings': '', 'extratags': 'FanFiction', 'author': 'sakurademonalchemist', 'authorId': '912889', 'authorUrl': 'https://www.fanfiction.net/u/912889/sakurademonalchemist', 'lastupdate': 'Last Update Year/Month: 2025/02, Last Update: 2025/02/16', 'series': '', 'seriesUrl': '', 'language': 'English', 'status': 'In-Progress', 'datePublished': '2025-01-19 04:36:10', 'dateUpdated': '2025-02-16 07:38:02', 'dateCreated': '2025-02-16 10:36:30', 'rating': 'M', 'numChapters': '11', 'numWords': '24,950', 'words_added': '', 'site': 'www.fanfiction.net', 'publisher': 'www.fanfiction.net', 'storyId': '14432506', 'title': 'Darkness', 'titleHTML': "<a class='titlelink' href='https://www.fanfiction.net/s/14432506/1/Darkness'>Darkness</a>", 'storyUrl': 'https://www.fanfiction.net/s/14432506/1/Darkness', 'sectionUrl': 'https://www.fanfiction.net/s/14432506/1/', 'description': "Not all princesses are damsels in distress. Some are dragons in disguise. Melanie Draconia, adopted daughter of Malleus, has no patience for the schemes of man, much less the human run Ministry. They're in for a nasty surprise if they think she's going to let them dictate how she's going to live her life. A Princesses' work is never done. Melanie/Silver/Sebek", 'formatname': '', 'formatext': '', 'siteabbrev': 'ffnet', 'version': 'FanFicFare v4.42.0', 'authorHTML': "<a class='authorlink' href='https://www.fanfiction.net/u/912889/sakurademonalchemist'>sakurademonalchemist</a>", 'seriesHTML': '', 'langcode': 'en', 'output_css': '', 'cover_image': '', 'newforanthology': '', 'reviews': '215', 'favs': '870', 'follows': '789'}, 'savemetacol': "<p><span class='label'>Adapter_Classes</span>: <div class='metadata list' id='adapter_classes'><ul>\n<li>FanFictionNetSiteAd apter</li>\n</ul></div><p>\n\n<p><span class='label'>Author</span>: <div class='metadata list' id='author'><ul>\n<li>sakurademonalchemist</li>\n</ul></div><p>\n\n<p><span class='label'>Authorhtml</span>: <div class='metadata' id='authorHTML'><a class='authorlink' href='https://www.fanfiction.net/u/912889/sakurademonalchemist'>sakurademonalchemist</a></div><p>\n\n<p><span class='label'>Author ID</span>: <div class='metadata list' id='authorId'><ul>\n<li>912889</li>\n</ul></div><p>\n\n<p><span class='label'>Author URL</span>: <div class='metadata list' id='authorUrl'><ul>\n<li>https://www.fanfiction.net/u/912889/sakurademonalchemist</li>\n</ul></div><p>\n\n<p><span class='label'>Category</span>: <div class='metadata list' id='category'><ul>\n<li>Harry Potter</li>\n<li>Disney: Twisted Wonderland/ディズニー ツイステッドワンダーランド</li>\n</ul></div><p>\n\n<p><span class='label'>Characters</span>: <div class='metadata list' id='characters'><ul>\n<li>Harry P.</li>\n</ul></div><p>\n\n<p><span class='label'>Packaged</span>: <div class='metadata datetime' id='dateCreated'>2025-02-16T10:36:30.292901</div><p>\n\n<p><span class='label'>Published</span>: <div class='metadata datetime' id='datePublished'>2025-01-19T04:36:10</div><p>\n\n<p><span class='label'>Updated</span>: <div class='metadata datetime' id='dateUpdated'>2025-02-16T07:38:02</div><p>\n\n<p><span class='label'>Summary</span>: <div class='metadata' id='description'>Not all princesses are damsels in distress. Some are dragons in disguise. Melanie Draconia, adopted daughter of Malleus, has no patience for the schemes of man, much less the human run Ministry. They're in for a nasty surprise if they think she's going to let them dictate how she's going to live her life. A Princesses' work is never done. Melanie/Silver/Sebek</div><p>\n\n<p><span class='label'>Favs</span>: <div class='metadata' id='favs'>870</div><p>\n\n<p><span class='label'>Follows</span>: <div class='metadata' id='follows'>789</div><p>\n\n<p><span class='label'>Genre</span>: <div class='metadata list' id='genre'><ul>\n<li>Family</li>\n<li>Fantasy</li>\n</ul></div><p>\n\n<p><span class='label'>Langcode</span>: <div class='metadata' id='langcode'>en</div><p>\n\n<p><span class='label'>Language</span>: <div class='metadata' id='language'>English</div><p>\n\n<p><span class='label'>Lastupdate</span>: <div class='metadata list' id='lastupdate'><ul>\n<li>Last Update Year/Month: 2025/02</li>\n<li>Last Update: 2025/02/16</li>\n</ul></div><p>\n\n<p><span class='label'>Chapters</span>: <div class='metadata int' id='numChapters'>11</div><p>\n\n<p><span class='label'>Words</span>: <div class='metadata' id='numWords'>24,950</div><p>\n\n<p><span class='label'>Python_Version</span>: <div class='metadata' id='python_version'>3.11.5 (main, Oct 7 2023, 11:55:17) [Clang 14.0.3 (clang-1403.0.22.14.1)]</div><p>\n\n<p><span class='label'>Rating</span>: <div class='metadata' id='rating'>M</div><p>\n\n<p><span class='label'>Reviews</span>: <div class='metadata' id='reviews'>215</div><p>\n\n<p><span class='label'>Story URL Section</span>: <div class='metadata' id='sectionUrl'>https://www.fanfiction.net/s/14432506/1/</div><p>\n\n<p><span class='label'>Publisher</span>: <div class='metadata' id='site'>www.fanfiction.net</div><p>\n\n<p><span class='label'>Site Abbrev</span>: <div class='metadata' id='siteabbrev'>ffnet</div><p>\n\n<p><span class='label'>Status</span>: <div class='metadata' id='status'>In-Progress</div><p>\n\n<p><span class='label'>Story ID</span>: <div class='metadata' id='storyId'>14432506</div><p>\n\n<p><span class='label'>Story URL</span>: <div class='metadata' id='storyUrl'>https://www.fanfiction.net/s/14432506/1/Darkness</div><p>\n\n<p><span class='label'>Title</span>: <div class='metadata' id='title'>Darkness</div><p>\n\n<p><span class='label'>Titlehtml</span>: <div class='metadata' id='titleHTML'><a class='titlelink' href='https://www.fanfiction.net/s/14432506/1/Darkness'>Darkness</a></div><p>\n\n<p><span class='label'>Downloader Version</span>: <div class='metadata' id='version'>FanFicFare v4.42.0</div><p>\n", 'tags': ['FanFiction', 'Family', 'Fantasy', 'Disney: Twisted Wonderland/ディズニー ツイステッドワンダーランド', 'Harry Potter', 'Harry P.', 'In-Progress'], 'updatedate': datetime.datetime(2025, 2, 16, 7, 38, 2, tzinfo=datetime.timezone(datetime.timedelta(second s=28800), 'HKT')), 'timestamp': datetime.datetime(2025, 2, 16, 10, 36, 30, 292901, tzinfo=datetime.timezone(datetime.timedelta(second s=28800), 'HKT')), 'epub_for_update': '/var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/old-69442-16abjf7s.epub', 'calibre_columns': {'calibre_std_author_sort': {'val': 'sakurademonalchemist', 'label': 'Author sort'}, 'calibre_std_uuid': {'val': '47df974f-0b1e-4e60-aa57-4d6722cb0f40', 'label': 'None'}, 'calibre_std_title_sort': {'val': 'Darkness', 'label': 'Title sort'}, 'calibre_std_languages': {'val': 'eng', 'label': 'Languages'}, 'calibre_std_identifiers': {'val': 'url:https://www.fanfiction.net/s/14432506/1/Darkness', 'label': 'Identifiers'}, 'calibre_std_rating': {'val': '', 'label': 'Rating'}, 'calibre_std_pubdate': {'val': 'Jan 2025', 'label': 'Published'}, 'calibre_std_publisher': {'val': 'www.fanfiction.net', 'label': 'Publisher'}, 'calibre_std_title': {'val': 'Darkness', 'label': 'Title'}, 'calibre_std_last_modified': {'val': '16 Feb 2025', 'label': 'Modified'}, 'calibre_std_series_index': {'val': '', 'label': 'None'}, 'calibre_std_authors': {'val': 'sakurademonalchemist', 'label': 'Authors'}, 'calibre_std_timestamp': {'val': '13 Feb 2025', 'label': 'Date'}, 'calibre_std_formats': {'val': 'EPUB', 'label': 'Formats'}, 'calibre_std_comments': {'val': "Not all princesses are damsels in distress. Some are dragons in disguise. Melanie Draconia, adopted daughter of Malleus, has no patience for the schemes of man, much less the human run Ministry. They're in for a nasty surprise if they think she's going to let them dictate how she's going to live her life. A Princesses' work is never done. Melanie/Silver/Sebek", 'label': 'Comments'}, 'calibre_std_tags': {'val': 'Disney: Twisted Wonderland/ディズニー ツイステッドワンダーランド, Family, Fanfiction, Fantasy, Harry P., Harry Potter, In-Progress, subscribed', 'label': 'Tags'}, 'calibre_std_series': {'val': '', 'label': 'Series'}, 'calibre_cust_abo': {'val': '', 'label': 'ABO'}, 'calibre_cust_abuse': {'val': '', 'label': 'Abuse'}, 'calibre_cust_adore': {'val': '', 'label': '💕'}, 'calibre_cust_age': {'val': '', 'label': 'MC age'}, 'calibre_cust_au': {'val': '', 'label': 'AU'}, 'calibre_cust_audience': {'val': 'M', 'label': 'Audience Rating'}, 'calibre_cust_beauty': {'val': '', 'label': 'Beauty'}, 'calibre_cust_betray': {'val': '', 'label': 'Betrayal'}, 'calibre_cust_cd': {'val': '', 'label': 'CDiv'}, 'calibre_cust_chapters': {'val': 10, 'label': 'Chapters'}, 'calibre_cust_char': {'val': ['Harry P.'], 'label': 'Characters'}, 'calibre_cust_comments': {'val': 197, 'label': 'Comments'}, 'calibre_cust_commentsperch': {'val': '19.7', 'label': 'Comments/ch'}, 'calibre_cust_commentsperword': {'val': '8.664672765657986', 'label': 'Comments/word'}, 'calibre_cust_courtship': {'val': '', 'label': '💍'}, 'calibre_cust_darkmc': {'val': '', 'label': 'DarkMC'}, 'calibre_cust_darkside': {'val': '', 'label': 'VS ☀️'}, 'calibre_cust_deathchar': {'val': '', 'label': 'Death (char)'}, 'calibre_cust_ewe': {'val': '', 'label': 'EWE'}, 'calibre_cust_fandom': {'val': 'Disney: Twisted Wonderland/ディズニー ツイステッドワンダーランド, Harry Potter', 'label': 'Fandom'}, 'calibre_cust_fandom2': {'val': ['Disney: Twisted Wonderland/ディズニー ツイステッドワンダーランド', 'Harry Potter'], 'label': 'Fandom(s)'}, 'calibre_cust_faves': {'val': 849, 'label': 'Faves'}, 'calibre_cust_favesperch': {'val': '84.9', 'label': 'Faves/ch'}, 'calibre_cust_favesperword': {'val': '37.34166080225194', 'label': 'Faves/word'}, 'calibre_cust_favship': {'val': '', 'label': 'Fave Ship'}, 'calibre_cust_fmc': {'val': '', 'label': 'FMS'}, 'calibre_cust_fndm': {'val': 'HP', 'label': 'Fndm'}, 'calibre_cust_focus': {'val': '', 'label': 'Focus'}, 'calibre_cust_gap': {'val': '', 'label': 'Age gap'}, 'calibre_cust_gifted': {'val': '', 'label': 'Gifted'}, 'calibre_cust_injury': {'val': '', 'label': 'Injury'}, 'calibre_cust_kidfic': {'val': '', 'label': 'Kid MC'}, 'calibre_cust_kidficother': {'val': '', 'label': 'Kid other'}, 'calibre_cust_kindle': {'val': '', 'label': 'For Kindle'}, 'calibre_cust_lastcheck': {'val': datetime.datetime(2025, 2, 15, 16, 10, 16, tzinfo=datetime.timezone.utc), 'label': 'Last Checked'}, 'calibre_cust_mates': {'val': '', 'label': 'Mates'}, 'calibre_cust_mc': {'val': '', 'label': 'MC'}, 'calibre_cust_mc2': {'val': [], 'label': 'MC (new and unnecessary)'}, 'calibre_cust_meta': {'val': "Browser Cache Failed to Load with error '[Errno 2] No such file or directory: 'firefox''", 'label': 'Errors'}, 'calibre_cust_mm_annotations': {'val': '', 'label': 'Annotations'}, 'calibre_cust_myfav': {'val': '', 'label': 'My Faves'}, 'calibre_cust_nbwl': {'val': '', 'label': 'ØBWL'}, 'calibre_cust_onkindle': {'val': False, 'label': 'On Kindle'}, 'calibre_cust_order': {'val': '', 'label': 'Order'}, 'calibre_cust_pov': {'val': [], 'label': 'POV'}, 'calibre_cust_r18': {'val': '', 'label': 'R18'}, 'calibre_cust_read': {'val': '', 'label': 'Read%'}, 'calibre_cust_read_status': {'val': 'Not Read', 'label': 'Read?'}, 'calibre_cust_readch': {'val': '', 'label': 'Read (ch)'}, 'calibre_cust_retelling': {'val': '', 'label': 'Retelling'}, 'calibre_cust_review': {'val': '', 'label': 'Review'}, 'calibre_cust_rule63': {'val': '', 'label': '63'}, 'calibre_cust_series2': {'val': '', 'label': 'Series(2)'}, 'calibre_cust_ship': {'val': '', 'label': 'Ship'}, 'calibre_cust_ship2': {'val': [], 'label': 'Main Ship'}, 'calibre_cust_status': {'val': '', 'label': 'Status'}, 'calibre_cust_status_official': {'val': 'In-Progress', 'label': 'Status (Official)'}, 'calibre_cust_test': {'val': 'sakurademonalchemist+10ch/Feb25', 'label': '!Testing!'}, 'calibre_cust_time': {'val': '', 'label': 'Time Travel'}, 'calibre_cust_uni': {'val': [], 'label': 'Universe'}, 'calibre_cust_unreadch': {'val': '10', 'label': 'Ch+-'}, 'calibre_cust_update': {'val': '2025-02-12 15:10:14', 'label': 'Date Updated'}, 'calibre_cust_update_date': {'val': datetime.datetime(2025, 2, 12, 7, 10, 14, tzinfo=datetime.timezone.utc), 'label': 'Date Updated 2'}, 'calibre_cust_views': {'val': '', 'label': 'Views'}, 'calibre_cust_viewsperch': {'val': '0.0', 'label': 'Views/ch'}, 'calibre_cust_viewsperword': {'val': '0.0', 'label': 'Views/word'}, 'calibre_cust_vsdumble': {'val': '', 'label': 'VS Dumble'}, 'calibre_cust_wbwl': {'val': '', 'label': 'WBWL'}, 'calibre_cust_word': {'val': 22736, 'label': 'Word Count'}, 'calibre_cust_world': {'val': '', 'label': 'World'}}, 'outfile': '/var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Darkness-sakurademonalchemist-umvilu3g.epub'}:HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/s/14432506/1/Darkness' Traceback (most recent call last): File "calibre_plugins.fanficfare_plugin.jobs", line 255, in do_download_for_worker story = adapter.getStoryMetadataOnly() ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/adapters/base_adapter.py", line 342, in getStoryMetadataOnly self.doExtractChapterUrlsAndMetadata(get_cover=get _cover) File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/adapters/adapter_fanfictionnet.py", line 121, in doExtractChapterUrlsAndMetadata data = self.get_request(url) ^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/requestable.py", line 119, in get_request return self.get_request_redirected(url, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/requestable.py", line 111, in get_request_redirected (data,rurl) = self.configuration.get_fetcher().get_request_redir ected( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/base_fetcher.py", line 133, in get_request_redirected fetchresp = self.do_request('GET', ^^^^^^^^^^^^^^^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/cache_basic.py", line 122, in fetcher_do_request fetchresp = chainfn( ^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/decorators.py", line 102, in fetcher_do_request fetchresp = chainfn( ^^^^^^^^ File "/Users/redacted/Library/Preferences/calibre/plugins/FanFicFare.zip/fanficfare/fetchers/cache_browser.py", line 103, in fetcher_do_request raise exceptions.HTTPErrorFFF( fanficfare.exceptions.HTTPErrorFFF: HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/s/14432506/1/Darkness' FFF: INFO: 2025-02-16 10:58:00,598: calibre_plugins.fanficfare_plugin.jobs(135): ================================================== ============================== site:(archiveofourown.org) Failed to initialize plugin: '/Users/redacted/Library/Preferences/calibre/plugins/DeDRM.zip' FFF: INFO: 2025-02-16 10:48:03,129: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63095977 FFF: DEBUG: 2025-02-16 10:48:03,148: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:48:03,149: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:48:03,155: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:48:03,155: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:03,155: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:03,155: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:03,155: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:03,156: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:03,278: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:48:03,299: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:48:03,304: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Were I with you then (I'm here now)-cathcer1984-qnx4e1ps.epub FFF: INFO: 2025-02-16 10:48:03,321: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Were I with you then (I'm here now)-cathcer1984-qnx4e1ps.epub FFF: DEBUG: 2025-02-16 10:48:03,322: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161579002 index: 0 FFF: DEBUG: 2025-02-16 10:48:03,323: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:03,323: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:03,991: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:48:03,991: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:48:03,992: decorators.py(123): random sleep(5.00-15.00):12.83 FFF: DEBUG: 2025-02-16 10:48:16,834: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:48:17,235: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:48:17,590: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/60279193 FFF: DEBUG: 2025-02-16 10:48:17,604: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:48:17,604: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:48:17,604: base_otw_adapter.py(142): url: https://archiveofourown.org/works/60...iew_adult=true FFF: INFO: 2025-02-16 10:48:17,604: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:17,604: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:17,604: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:17,605: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:17,605: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:17,703: base_otw_adapter.py(269): numChapters: (4) FFF: DEBUG: 2025-02-16 10:48:17,722: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:48:17,815: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(3) vs url(4) FFF: INFO: 2025-02-16 10:48:17,815: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/turnabout (it's not over yet)-awyeahitssam-suewho2m.epub FFF: INFO: 2025-02-16 10:48:17,832: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/turnabout (it's not over yet)-awyeahitssam-suewho2m.epub FFF: DEBUG: 2025-02-16 10:48:18,120: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/60...ters/161032618 index: 2 FFF: DEBUG: 2025-02-16 10:48:18,121: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:48:18,121: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:18,121: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:24,118: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:48:24,118: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:48:24,118: decorators.py(123): random sleep(5.00-15.00):8.22 FFF: DEBUG: 2025-02-16 10:48:32,346: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:32,681: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/60...ters/161557543 index: 3 FFF: DEBUG: 2025-02-16 10:48:32,682: base_otw_adapter.py(444): USE view_full_work FFF: INFO: 2025-02-16 10:48:32,903: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:48:33,293: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/45542815 FFF: DEBUG: 2025-02-16 10:48:33,305: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:48:33,306: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:48:33,306: base_otw_adapter.py(142): url: https://archiveofourown.org/works/45...iew_adult=true FFF: INFO: 2025-02-16 10:48:33,306: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:33,306: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:33,306: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:33,306: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:33,307: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:33,393: base_otw_adapter.py(269): numChapters: (40) FFF: DEBUG: 2025-02-16 10:48:33,430: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:48:33,993: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(39) vs url(40) FFF: INFO: 2025-02-16 10:48:33,993: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/My Ambitions (Will Be Your Savior)-Mina37-bcih87j1.epub FFF: INFO: 2025-02-16 10:48:34,011: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/My Ambitions (Will Be Your Savior)-Mina37-bcih87j1.epub FFF: DEBUG: 2025-02-16 10:48:36,695: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/45...ters/161589619 index: 39 FFF: DEBUG: 2025-02-16 10:48:36,696: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:48:36,696: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:36,696: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:43,940: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:48:43,940: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:48:43,942: decorators.py(123): random sleep(5.00-15.00):13.89 FFF: DEBUG: 2025-02-16 10:48:57,840: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:48:58,592: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:48:59,259: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/62654551 FFF: DEBUG: 2025-02-16 10:48:59,271: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:48:59,272: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:48:59,272: base_otw_adapter.py(142): url: https://archiveofourown.org/works/62...iew_adult=true FFF: INFO: 2025-02-16 10:48:59,272: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:59,272: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:59,272: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:59,273: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:48:59,273: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:48:59,370: base_otw_adapter.py(269): numChapters: (12) FFF: DEBUG: 2025-02-16 10:48:59,393: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:48:59,663: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(11) vs url(12) FFF: INFO: 2025-02-16 10:48:59,664: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Kindness of Ravens-Umei_no_Mai-s0romyhm.epub FFF: INFO: 2025-02-16 10:48:59,681: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Kindness of Ravens-Umei_no_Mai-s0romyhm.epub FFF: DEBUG: 2025-02-16 10:49:00,642: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/62...ters/161577499 index: 11 FFF: DEBUG: 2025-02-16 10:49:00,643: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:49:00,643: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:00,643: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:07,022: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:49:07,022: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:49:07,023: decorators.py(123): random sleep(5.00-15.00):14.26 FFF: DEBUG: 2025-02-16 10:49:21,287: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:49:21,723: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:49:22,183: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/57894925 FFF: DEBUG: 2025-02-16 10:49:22,196: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:49:22,196: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:49:22,196: base_otw_adapter.py(142): url: https://archiveofourown.org/works/57...iew_adult=true FFF: INFO: 2025-02-16 10:49:22,196: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/57...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:22,197: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/57...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:22,197: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:49:22,197: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/57...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:22,197: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:49:22,278: base_otw_adapter.py(269): numChapters: (19) FFF: DEBUG: 2025-02-16 10:49:22,302: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:49:22,463: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(18) vs url(19) FFF: INFO: 2025-02-16 10:49:22,463: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/For the Game-Lomonaaeren-28uwiodg.epub FFF: INFO: 2025-02-16 10:49:22,480: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/For the Game-Lomonaaeren-28uwiodg.epub FFF: DEBUG: 2025-02-16 10:49:23,238: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/57...ters/161564455 index: 18 FFF: DEBUG: 2025-02-16 10:49:23,239: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:49:23,239: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/57...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:23,239: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/57...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:29,184: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:49:29,184: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:49:29,185: decorators.py(123): random sleep(5.00-15.00):8.03 FFF: DEBUG: 2025-02-16 10:49:37,223: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:49:37,529: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:49:37,951: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/62153836 FFF: DEBUG: 2025-02-16 10:49:37,964: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:49:37,964: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:49:37,965: base_otw_adapter.py(142): url: https://archiveofourown.org/works/62...iew_adult=true FFF: INFO: 2025-02-16 10:49:37,965: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:37,965: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:37,965: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:49:37,965: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:37,965: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:49:38,051: base_otw_adapter.py(269): numChapters: (6) FFF: DEBUG: 2025-02-16 10:49:38,069: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:49:38,198: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(5) vs url(6) FFF: INFO: 2025-02-16 10:49:38,198: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Beast at Bay-katydid-l2dja_ln.epub FFF: INFO: 2025-02-16 10:49:38,215: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Beast at Bay-katydid-l2dja_ln.epub FFF: DEBUG: 2025-02-16 10:49:38,519: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/62...ters/161615320 index: 5 FFF: DEBUG: 2025-02-16 10:49:38,520: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:49:38,520: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:38,520: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:45,070: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:49:45,071: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:49:45,072: decorators.py(123): random sleep(5.00-15.00):12.41 FFF: DEBUG: 2025-02-16 10:49:57,481: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:49:57,724: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:49:58,101: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63114085 FFF: DEBUG: 2025-02-16 10:49:58,114: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:49:58,114: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:49:58,114: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:49:58,114: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:58,114: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:58,115: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:49:58,115: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:58,115: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:49:58,199: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:49:58,216: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:49:58,221: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Wild Card-sifshadowheart-btsvaumc.epub FFF: INFO: 2025-02-16 10:49:58,238: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Wild Card-sifshadowheart-btsvaumc.epub FFF: DEBUG: 2025-02-16 10:49:58,239: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161628376 index: 0 FFF: DEBUG: 2025-02-16 10:49:58,240: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:49:58,240: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:02,834: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:50:02,835: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:50:02,835: decorators.py(123): random sleep(5.00-15.00):13.92 FFF: DEBUG: 2025-02-16 10:50:16,762: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:50:16,941: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:50:17,261: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/62474713 FFF: DEBUG: 2025-02-16 10:50:17,274: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:50:17,274: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:50:17,275: base_otw_adapter.py(142): url: https://archiveofourown.org/works/62...iew_adult=true FFF: INFO: 2025-02-16 10:50:17,275: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:17,275: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:17,275: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:50:17,275: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:17,275: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:50:17,352: base_otw_adapter.py(269): numChapters: (4) FFF: DEBUG: 2025-02-16 10:50:17,368: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:50:17,425: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(3) vs url(4) FFF: INFO: 2025-02-16 10:50:17,425: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Harry Potter and his Tomcat-GeMerope-1_inu1u0.epub FFF: INFO: 2025-02-16 10:50:17,442: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Harry Potter and his Tomcat-GeMerope-1_inu1u0.epub FFF: DEBUG: 2025-02-16 10:50:17,534: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/62...ters/161572654 index: 3 FFF: DEBUG: 2025-02-16 10:50:17,535: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:50:17,535: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:17,535: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:24,769: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:50:24,770: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:50:24,771: decorators.py(123): random sleep(5.00-15.00):11.23 FFF: DEBUG: 2025-02-16 10:50:36,012: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:50:36,187: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:50:36,532: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/60370327 FFF: DEBUG: 2025-02-16 10:50:36,545: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:50:36,545: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:50:36,546: base_otw_adapter.py(142): url: https://archiveofourown.org/works/60...iew_adult=true FFF: INFO: 2025-02-16 10:50:36,546: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:36,546: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:36,546: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:50:36,546: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:36,546: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:50:36,625: base_otw_adapter.py(269): numChapters: (17) FFF: DEBUG: 2025-02-16 10:50:36,645: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:50:36,807: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(16) vs url(17) FFF: INFO: 2025-02-16 10:50:36,807: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/this wheel of many parts_ that can rise and spin (over and over again)-NaoNazo-7wy2ie5h.epub FFF: INFO: 2025-02-16 10:50:36,825: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/this wheel of many parts_ that can rise and spin (over and over again)-NaoNazo-7wy2ie5h.epub FFF: DEBUG: 2025-02-16 10:50:37,000: story.py(1545): addImgUrl(parenturl=None,url=https://media.tenor.com/QQ5Q_5iI1fkAAAAC/hey-spider-man.gif,cover=None,coverexclusion= FFF: DEBUG: 2025-02-16 10:50:37,000: story.py(1643): Doing image processing on (https://media.tenor.com/QQ5Q_5iI1fkA...spider-man.gif) FFF: DEBUG: 2025-02-16 10:50:37,015: story.py(1720): Attempt make_firstimage_cover(https://media.tenor.com/QQ5Q_5iI1fkA...spider-man.gif) FFF: DEBUG: 2025-02-16 10:50:37,016: story.py(1738): use cover(first): https://media.tenor.com/QQ5Q_5iI1fkA...spider-man.gif FFF: DEBUG: 2025-02-16 10:50:37,082: story.py(1545): addImgUrl(parenturl=None,url=https://media1.tenor.com/m/5WHtWTXSbbEAAAAd/the-matrix-keanu-reeves.gif,cover=None,coverexclusion= FFF: DEBUG: 2025-02-16 10:50:37,082: story.py(1643): Doing image processing on (https://media1.tenor.com/m/5WHtWTXSb...anu-reeves.gif) FFF: DEBUG: 2025-02-16 10:50:37,730: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/60...ters/161620846 index: 16 FFF: DEBUG: 2025-02-16 10:50:37,732: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:50:37,732: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:37,732: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/60...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:43,350: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:50:43,351: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:50:43,352: decorators.py(123): random sleep(5.00-15.00):14.38 FFF: DEBUG: 2025-02-16 10:50:57,731: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:50:57,951: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:50:58,404: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63106525 FFF: DEBUG: 2025-02-16 10:50:58,421: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:50:58,421: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:50:58,421: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:50:58,421: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:58,421: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:58,421: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:50:58,422: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:58,422: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:50:58,520: base_otw_adapter.py(269): numChapters: (6) FFF: DEBUG: 2025-02-16 10:50:58,537: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:50:58,542: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Black Treasure of Valyria-sifshadowheart-nsn400gq.epub FFF: INFO: 2025-02-16 10:50:58,559: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Black Treasure of Valyria-sifshadowheart-nsn400gq.epub FFF: DEBUG: 2025-02-16 10:50:58,559: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161607085 index: 0 FFF: DEBUG: 2025-02-16 10:50:58,560: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:50:58,560: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:50:58,560: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:04,694: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:51:04,695: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:51:04,695: decorators.py(123): random sleep(5.00-15.00):6.25 FFF: DEBUG: 2025-02-16 10:51:10,955: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:11,367: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161607394 index: 1 FFF: DEBUG: 2025-02-16 10:51:11,368: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:51:11,517: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161607475 index: 2 FFF: DEBUG: 2025-02-16 10:51:11,517: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:51:11,632: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161607571 index: 3 FFF: DEBUG: 2025-02-16 10:51:11,632: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:51:11,728: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161607664 index: 4 FFF: DEBUG: 2025-02-16 10:51:11,729: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:51:11,915: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161607778 index: 5 FFF: DEBUG: 2025-02-16 10:51:11,916: base_otw_adapter.py(444): USE view_full_work FFF: INFO: 2025-02-16 10:51:12,044: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:51:12,421: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/55285567 FFF: DEBUG: 2025-02-16 10:51:12,434: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:51:12,434: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:51:12,434: base_otw_adapter.py(142): url: https://archiveofourown.org/works/55...iew_adult=true FFF: INFO: 2025-02-16 10:51:12,434: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/55...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:12,434: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/55...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:12,435: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:12,435: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/55...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:12,435: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:12,522: base_otw_adapter.py(269): numChapters: (8) FFF: DEBUG: 2025-02-16 10:51:12,543: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:51:12,738: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(7) vs url(8) FFF: INFO: 2025-02-16 10:51:12,738: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Colors of the Dawn-IncomingAlbatross-6d_2g7mi.epub FFF: INFO: 2025-02-16 10:51:12,756: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Colors of the Dawn-IncomingAlbatross-6d_2g7mi.epub FFF: DEBUG: 2025-02-16 10:51:13,602: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/55...ters/161642239 index: 7 FFF: DEBUG: 2025-02-16 10:51:13,603: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:51:13,603: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/55...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:13,603: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/55...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:20,669: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:51:20,670: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:51:20,671: decorators.py(123): random sleep(5.00-15.00):9.97 FFF: DEBUG: 2025-02-16 10:51:30,644: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:51:31,073: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:51:31,527: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63118021 FFF: DEBUG: 2025-02-16 10:51:31,540: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:51:31,540: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:51:31,540: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:51:31,540: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:31,540: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:31,540: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:31,541: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:31,541: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:31,622: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:51:31,638: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:51:31,643: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Dancing With The Devil-Islenthatur-bnzx6w9c.epub FFF: INFO: 2025-02-16 10:51:31,660: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Dancing With The Devil-Islenthatur-bnzx6w9c.epub FFF: DEBUG: 2025-02-16 10:51:31,661: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161639470 index: 0 FFF: DEBUG: 2025-02-16 10:51:31,662: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:31,662: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:38,435: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:51:38,436: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:51:38,437: decorators.py(123): random sleep(5.00-15.00):5.39 FFF: DEBUG: 2025-02-16 10:51:43,842: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:51:44,012: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:51:44,344: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/62034520 FFF: DEBUG: 2025-02-16 10:51:44,358: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:51:44,358: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:51:44,358: base_otw_adapter.py(142): url: https://archiveofourown.org/works/62...iew_adult=true FFF: INFO: 2025-02-16 10:51:44,358: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:44,358: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:44,358: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:44,359: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:44,359: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:44,443: base_otw_adapter.py(269): numChapters: (4) FFF: DEBUG: 2025-02-16 10:51:44,464: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:51:44,552: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(3) vs url(4) FFF: INFO: 2025-02-16 10:51:44,552: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Belonging (Together with You)-wolfsrainrules-jaqveaq8.epub FFF: INFO: 2025-02-16 10:51:44,570: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Belonging (Together with You)-wolfsrainrules-jaqveaq8.epub FFF: DEBUG: 2025-02-16 10:51:45,050: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/62...ters/161606845 index: 3 FFF: DEBUG: 2025-02-16 10:51:45,051: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:51:45,051: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:45,052: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:51,265: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:51:51,265: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:51:51,266: decorators.py(123): random sleep(5.00-15.00):7.42 FFF: DEBUG: 2025-02-16 10:51:58,646: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:51:58,938: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:51:59,321: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63106588 FFF: DEBUG: 2025-02-16 10:51:59,334: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:51:59,334: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:51:59,334: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:51:59,334: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:59,334: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:59,334: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:59,335: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:59,335: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:51:59,403: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:51:59,417: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:51:59,422: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Fuchsia Sight-wintergreen825-q_t2699p.epub FFF: INFO: 2025-02-16 10:51:59,440: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Fuchsia Sight-wintergreen825-q_t2699p.epub FFF: DEBUG: 2025-02-16 10:51:59,441: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161607232 index: 0 FFF: DEBUG: 2025-02-16 10:51:59,442: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:51:59,442: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:06,718: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:52:06,719: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:52:06,720: decorators.py(123): random sleep(5.00-15.00):6.57 FFF: DEBUG: 2025-02-16 10:52:13,296: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:52:13,410: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:52:13,728: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/4566726 FFF: DEBUG: 2025-02-16 10:52:13,741: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:52:13,741: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:52:13,741: base_otw_adapter.py(142): url: https://archiveofourown.org/works/45...iew_adult=true FFF: INFO: 2025-02-16 10:52:13,741: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:13,741: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:13,741: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:52:13,742: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:13,742: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:52:13,857: base_otw_adapter.py(269): numChapters: (11) FFF: DEBUG: 2025-02-16 10:52:13,881: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:52:13,948: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(10) vs url(11) FFF: INFO: 2025-02-16 10:52:13,948: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Rivalry-Pseudonymous_Entity-ad1ew48l.epub FFF: INFO: 2025-02-16 10:52:13,965: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Rivalry-Pseudonymous_Entity-ad1ew48l.epub FFF: DEBUG: 2025-02-16 10:52:14,200: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/45...ters/161605843 index: 10 FFF: DEBUG: 2025-02-16 10:52:14,201: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:52:14,201: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:14,201: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/45...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:21,046: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:52:21,047: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:52:21,048: decorators.py(123): random sleep(5.00-15.00):12.30 FFF: DEBUG: 2025-02-16 10:52:33,350: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:52:33,565: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:52:33,947: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/62805346 FFF: DEBUG: 2025-02-16 10:52:33,961: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:52:33,961: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:52:33,961: base_otw_adapter.py(142): url: https://archiveofourown.org/works/62...iew_adult=true FFF: INFO: 2025-02-16 10:52:33,961: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:33,961: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:33,961: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:52:33,962: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:33,962: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:52:34,036: base_otw_adapter.py(269): numChapters: (11) FFF: DEBUG: 2025-02-16 10:52:34,054: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:52:34,206: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(10) vs url(11) FFF: INFO: 2025-02-16 10:52:34,207: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Gamer Girl Transmigrates as a Farm Boy-esama-n3x9ojpt.epub FFF: INFO: 2025-02-16 10:52:34,224: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Gamer Girl Transmigrates as a Farm Boy-esama-n3x9ojpt.epub FFF: DEBUG: 2025-02-16 10:52:34,771: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/62...ters/161584645 index: 10 FFF: DEBUG: 2025-02-16 10:52:34,771: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:52:34,772: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:34,772: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:40,976: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:52:40,977: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:52:40,978: decorators.py(123): random sleep(5.00-15.00):14.97 FFF: DEBUG: 2025-02-16 10:52:55,961: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:52:56,239: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:52:56,634: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/26980552 FFF: DEBUG: 2025-02-16 10:52:56,649: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:52:56,649: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:52:56,649: base_otw_adapter.py(142): url: https://archiveofourown.org/works/26...iew_adult=true FFF: INFO: 2025-02-16 10:52:56,649: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/26...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:56,650: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/26...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:56,650: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:52:56,650: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/26...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:56,650: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:52:56,739: base_otw_adapter.py(269): numChapters: (26) FFF: DEBUG: 2025-02-16 10:52:56,767: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:52:57,127: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(25) vs url(26) FFF: INFO: 2025-02-16 10:52:57,128: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/trade your heart for bones to know-blackkat-176sz_hr.epub FFF: INFO: 2025-02-16 10:52:57,145: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/trade your heart for bones to know-blackkat-176sz_hr.epub FFF: DEBUG: 2025-02-16 10:52:58,479: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/26...ters/161583520 index: 25 FFF: DEBUG: 2025-02-16 10:52:58,480: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:52:58,480: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/26...iew_adult=true FFF: DEBUG: 2025-02-16 10:52:58,480: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/26...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:05,085: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:53:05,086: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:53:05,087: decorators.py(123): random sleep(5.00-15.00):9.22 FFF: DEBUG: 2025-02-16 10:53:14,316: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:53:14,774: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:53:15,300: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63106225 FFF: DEBUG: 2025-02-16 10:53:15,315: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:53:15,316: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:53:15,316: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:53:15,316: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:15,316: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:15,316: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:53:15,316: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:15,317: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:53:15,417: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:53:15,431: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:53:15,436: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Our Lady Intervention-wintergreen825-zrok6lc8.epub FFF: INFO: 2025-02-16 10:53:15,453: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Our Lady Intervention-wintergreen825-zrok6lc8.epub FFF: DEBUG: 2025-02-16 10:53:15,454: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161606392 index: 0 FFF: DEBUG: 2025-02-16 10:53:15,455: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:15,455: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:20,602: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:53:20,603: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:53:20,604: decorators.py(123): random sleep(5.00-15.00):13.15 FFF: DEBUG: 2025-02-16 10:53:33,765: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:53:33,870: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:53:34,186: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/23889022 FFF: DEBUG: 2025-02-16 10:53:34,198: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:53:34,199: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:53:34,199: base_otw_adapter.py(142): url: https://archiveofourown.org/works/23...iew_adult=true FFF: INFO: 2025-02-16 10:53:34,199: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/23...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:34,199: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/23...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:34,199: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:53:34,200: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/23...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:34,200: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:53:34,282: base_otw_adapter.py(269): numChapters: (11) FFF: DEBUG: 2025-02-16 10:53:34,302: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:53:34,307: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/No Encouragement Necessary-duplicity-9jv3vcam.epub FFF: INFO: 2025-02-16 10:53:34,324: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/No Encouragement Necessary-duplicity-9jv3vcam.epub FFF: DEBUG: 2025-02-16 10:53:34,325: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/57430471 index: 0 FFF: DEBUG: 2025-02-16 10:53:34,325: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:34,326: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/23...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:34,326: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/23...iew_adult=true FFF: DEBUG: 2025-02-16 10:53:45,026: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:53:45,027: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:53:45,027: decorators.py(123): random sleep(5.00-15.00):6.49 FFF: DEBUG: 2025-02-16 10:53:51,530: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:53:51,793: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/57573883 index: 1 FFF: DEBUG: 2025-02-16 10:53:51,793: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:51,875: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/57714532 index: 2 FFF: DEBUG: 2025-02-16 10:53:51,875: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:51,954: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/57969301 index: 3 FFF: DEBUG: 2025-02-16 10:53:51,955: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,044: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/59319493 index: 4 FFF: DEBUG: 2025-02-16 10:53:52,045: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,106: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/60220849 index: 5 FFF: DEBUG: 2025-02-16 10:53:52,106: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,220: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/62857060 index: 6 FFF: DEBUG: 2025-02-16 10:53:52,220: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,319: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/67584400 index: 7 FFF: DEBUG: 2025-02-16 10:53:52,320: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,408: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/67596812 index: 8 FFF: DEBUG: 2025-02-16 10:53:52,409: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,512: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...pters/67624058 index: 9 FFF: DEBUG: 2025-02-16 10:53:52,513: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,599: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/23...ters/161634730 index: 10 FFF: DEBUG: 2025-02-16 10:53:52,599: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:53:52,604: story.py(1545): addImgUrl(parenturl=https://archiveofourown.org/works/23889022/chapters/161634730,url=https://64.media.tumblr.com/2a6d49bc111cac0e8dcd4b48b2c664c0/cb24607bdacb8fd3-d3/s1280x1920/585f5761758bade3ad7c6bff7f33d428be0a51c9.jpg,cover =None,coverexclusion= FFF: DEBUG: 2025-02-16 10:53:52,604: cache_basic.py(116): ========== MISS (GET) BasicCache https://64.media.tumblr.com/2a6d49bc...28be0a51c9.jpg FFF: DEBUG: 2025-02-16 10:53:52,604: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://64.media.tumblr.com/2a6d49bc...28be0a51c9.jpg FFF: DEBUG: 2025-02-16 10:53:52,831: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:53:52,831: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:53:52,832: decorators.py(123): random sleep(5.00-15.00):14.27 FFF: DEBUG: 2025-02-16 10:54:07,110: story.py(1643): Doing image processing on (https://64.media.tumblr.com/2a6d49bc...28be0a51c9.jpg) FFF: DEBUG: 2025-02-16 10:54:07,127: story.py(1720): Attempt make_firstimage_cover(https://64.media.tumblr.com/2a6d49bc...28be0a51c9.jpg) FFF: DEBUG: 2025-02-16 10:54:07,130: story.py(1738): use cover(first): https://64.media.tumblr.com/2a6d49bc...28be0a51c9.jpg FFF: INFO: 2025-02-16 10:54:07,199: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:54:07,685: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63093589 FFF: DEBUG: 2025-02-16 10:54:07,699: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:54:07,699: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:54:07,699: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:54:07,699: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:07,699: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:07,699: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:54:07,700: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:07,700: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:54:07,771: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:54:07,785: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:54:07,790: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/(i always feel like) somebody's watching me-TheOnceandFutureQueenofTarts-v8t595pe.epub FFF: INFO: 2025-02-16 10:54:07,807: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/(i always feel like) somebody's watching me-TheOnceandFutureQueenofTarts-v8t595pe.epub FFF: DEBUG: 2025-02-16 10:54:07,808: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161573281 index: 0 FFF: DEBUG: 2025-02-16 10:54:07,809: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:07,809: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:31,170: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:54:31,173: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:54:31,174: decorators.py(123): random sleep(5.00-15.00):11.62 FFF: DEBUG: 2025-02-16 10:54:42,799: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:54:42,906: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:54:43,224: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63025459 FFF: DEBUG: 2025-02-16 10:54:43,237: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:54:43,237: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:54:43,238: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:54:43,238: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:43,238: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:43,238: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:54:43,238: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:43,238: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:54:43,316: base_otw_adapter.py(269): numChapters: (2) FFF: DEBUG: 2025-02-16 10:54:43,337: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:54:43,351: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(1) vs url(2) FFF: INFO: 2025-02-16 10:54:43,351: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Solving the Cipher-AngeliaDark-lak8lb_r.epub FFF: INFO: 2025-02-16 10:54:43,368: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Solving the Cipher-AngeliaDark-lak8lb_r.epub FFF: DEBUG: 2025-02-16 10:54:43,406: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161533780 index: 1 FFF: DEBUG: 2025-02-16 10:54:43,406: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:54:43,406: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:43,406: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:54:51,558: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:54:51,558: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:54:51,560: decorators.py(123): random sleep(5.00-15.00):11.12 FFF: DEBUG: 2025-02-16 10:55:02,683: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:55:02,857: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:55:03,195: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/39323223 FFF: DEBUG: 2025-02-16 10:55:03,207: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:55:03,208: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:55:03,208: base_otw_adapter.py(142): url: https://archiveofourown.org/works/39...iew_adult=true FFF: INFO: 2025-02-16 10:55:03,208: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/39...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:03,208: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/39...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:03,208: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:03,208: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/39...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:03,209: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:03,301: base_otw_adapter.py(269): numChapters: (49) FFF: DEBUG: 2025-02-16 10:55:03,342: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:55:03,701: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(48) vs url(49) FFF: INFO: 2025-02-16 10:55:03,701: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/I'm sippin' tea in yo hood-Ourliazo-60t1qk5g.epub FFF: INFO: 2025-02-16 10:55:03,718: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/I'm sippin' tea in yo hood-Ourliazo-60t1qk5g.epub FFF: DEBUG: 2025-02-16 10:55:05,197: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/39...ters/161616241 index: 48 FFF: DEBUG: 2025-02-16 10:55:05,198: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:55:05,198: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/39...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:05,198: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/39...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:12,384: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:55:12,384: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:55:12,385: decorators.py(123): random sleep(5.00-15.00):9.35 FFF: DEBUG: 2025-02-16 10:55:21,734: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:55:22,215: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:55:22,785: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/6448987 FFF: DEBUG: 2025-02-16 10:55:22,799: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:55:22,799: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:55:22,799: base_otw_adapter.py(142): url: https://archiveofourown.org/works/64...iew_adult=true FFF: INFO: 2025-02-16 10:55:22,799: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/64...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:22,799: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/64...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:22,799: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:22,800: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/64...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:22,800: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:22,885: base_otw_adapter.py(269): numChapters: (33) FFF: DEBUG: 2025-02-16 10:55:22,921: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:55:23,137: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(32) vs url(33) FFF: INFO: 2025-02-16 10:55:23,137: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Adventures in Magick-Pseudonymous_Entity-1_3u09mj.epub FFF: INFO: 2025-02-16 10:55:23,155: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Adventures in Magick-Pseudonymous_Entity-1_3u09mj.epub FFF: DEBUG: 2025-02-16 10:55:23,823: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/64...ters/161613118 index: 32 FFF: DEBUG: 2025-02-16 10:55:23,823: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:55:23,824: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/64...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:23,824: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/64...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:31,126: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:55:31,127: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:55:31,128: decorators.py(123): random sleep(5.00-15.00):9.81 FFF: DEBUG: 2025-02-16 10:55:40,940: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:55:41,214: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:55:41,657: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63104056 FFF: DEBUG: 2025-02-16 10:55:41,670: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:55:41,670: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:55:41,670: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:55:41,670: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:41,670: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:41,670: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:41,671: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:41,671: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:41,781: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:55:41,796: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:55:41,801: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/work them out at the gym_ dive in and take a swim-an_ardent_rain-bozvni66.epub FFF: INFO: 2025-02-16 10:55:41,818: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/work them out at the gym_ dive in and take a swim-an_ardent_rain-bozvni66.epub FFF: DEBUG: 2025-02-16 10:55:41,819: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161600494 index: 0 FFF: DEBUG: 2025-02-16 10:55:41,819: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:41,820: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:42,403: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:55:42,403: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:55:42,404: decorators.py(123): random sleep(5.00-15.00):5.47 FFF: DEBUG: 2025-02-16 10:55:47,874: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:55:48,086: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:55:48,407: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/62935378 FFF: DEBUG: 2025-02-16 10:55:48,420: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:55:48,420: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:55:48,421: base_otw_adapter.py(142): url: https://archiveofourown.org/works/62...iew_adult=true FFF: INFO: 2025-02-16 10:55:48,421: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:48,421: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:48,421: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:48,421: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:48,421: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:55:48,516: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:55:48,534: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:55:48,539: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Put To Use In My Old Griefs-Anna_Hopkins-99i1sq9h.epub FFF: INFO: 2025-02-16 10:55:48,556: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Put To Use In My Old Griefs-Anna_Hopkins-99i1sq9h.epub FFF: DEBUG: 2025-02-16 10:55:48,557: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/62...ters/161162140 index: 0 FFF: DEBUG: 2025-02-16 10:55:48,558: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:48,558: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:55:55,333: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:55:55,334: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:55:55,335: decorators.py(123): random sleep(5.00-15.00):11.40 FFF: DEBUG: 2025-02-16 10:56:06,739: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:56:07,019: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:56:07,346: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63097162 FFF: DEBUG: 2025-02-16 10:56:07,359: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:56:07,360: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:56:07,360: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:56:07,360: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:07,360: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:07,360: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:56:07,360: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:07,361: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:56:07,448: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:56:07,465: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:56:07,470: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Like a Leaf in a River-Kushimani-q7if_zsp.epub FFF: INFO: 2025-02-16 10:56:07,487: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Like a Leaf in a River-Kushimani-q7if_zsp.epub FFF: DEBUG: 2025-02-16 10:56:07,488: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161581912 index: 0 FFF: DEBUG: 2025-02-16 10:56:07,488: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:07,489: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:16,006: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:56:16,007: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:56:16,009: decorators.py(123): random sleep(5.00-15.00):7.26 FFF: DEBUG: 2025-02-16 10:56:23,273: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:56:23,552: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:56:23,872: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63107011 FFF: DEBUG: 2025-02-16 10:56:23,885: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:56:23,885: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:56:23,885: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:56:23,885: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:23,885: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:23,886: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:56:23,886: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:23,886: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:56:23,988: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:56:24,006: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:56:24,011: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Fur_ Fang_ and Claw-sifshadowheart-wp9c9gf1.epub FFF: INFO: 2025-02-16 10:56:24,029: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Fur_ Fang_ and Claw-sifshadowheart-wp9c9gf1.epub FFF: DEBUG: 2025-02-16 10:56:24,030: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161608417 index: 0 FFF: DEBUG: 2025-02-16 10:56:24,030: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:24,031: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:31,237: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:56:31,237: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:56:31,239: decorators.py(123): random sleep(5.00-15.00):8.98 FFF: DEBUG: 2025-02-16 10:56:40,219: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:56:40,551: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:56:40,874: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/62655478 FFF: DEBUG: 2025-02-16 10:56:40,887: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:56:40,887: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:56:40,887: base_otw_adapter.py(142): url: https://archiveofourown.org/works/62...iew_adult=true FFF: INFO: 2025-02-16 10:56:40,887: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:40,887: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:40,887: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:56:40,888: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:40,888: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:56:40,974: base_otw_adapter.py(269): numChapters: (4) FFF: DEBUG: 2025-02-16 10:56:40,989: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:56:41,095: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(3) vs url(4) FFF: INFO: 2025-02-16 10:56:41,095: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Follow where she goes-mosiva-j0_89jkk.epub FFF: INFO: 2025-02-16 10:56:41,113: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Follow where she goes-mosiva-j0_89jkk.epub FFF: DEBUG: 2025-02-16 10:56:41,305: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/62...ters/161534707 index: 3 FFF: DEBUG: 2025-02-16 10:56:41,306: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:56:41,306: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:41,306: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/62...iew_adult=true FFF: DEBUG: 2025-02-16 10:56:47,959: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:56:47,960: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:56:47,961: decorators.py(123): random sleep(5.00-15.00):12.40 FFF: DEBUG: 2025-02-16 10:57:00,363: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:57:00,551: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:57:00,911: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/48128839 FFF: DEBUG: 2025-02-16 10:57:00,924: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:57:00,924: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:57:00,924: base_otw_adapter.py(142): url: https://archiveofourown.org/works/48...iew_adult=true FFF: INFO: 2025-02-16 10:57:00,924: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/48...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:00,925: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/48...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:00,925: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:57:00,925: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/48...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:00,925: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:57:01,013: base_otw_adapter.py(269): numChapters: (45) FFF: DEBUG: 2025-02-16 10:57:01,051: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:57:01,463: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(44) vs url(45) FFF: INFO: 2025-02-16 10:57:01,463: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Future is Ours-Hellasia-naf_ctaj.epub FFF: INFO: 2025-02-16 10:57:01,480: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/The Future is Ours-Hellasia-naf_ctaj.epub FFF: DEBUG: 2025-02-16 10:57:03,252: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/48...ters/161596762 index: 44 FFF: DEBUG: 2025-02-16 10:57:03,253: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:57:03,253: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/48...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:03,253: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/48...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:09,683: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:57:09,684: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:57:09,685: decorators.py(123): random sleep(5.00-15.00):7.51 FFF: DEBUG: 2025-02-16 10:57:17,196: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:57:17,718: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:57:18,319: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/59704243 FFF: DEBUG: 2025-02-16 10:57:18,333: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:57:18,333: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:57:18,333: base_otw_adapter.py(142): url: https://archiveofourown.org/works/59...iew_adult=true FFF: INFO: 2025-02-16 10:57:18,333: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/59...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:18,333: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/59...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:18,333: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:57:18,334: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/59...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:18,334: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:57:18,413: base_otw_adapter.py(269): numChapters: (16) FFF: DEBUG: 2025-02-16 10:57:18,435: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:57:18,561: calibre_plugins.fanficfare_plugin.jobs(376): Do update - epub(15) vs url(16) FFF: INFO: 2025-02-16 10:57:18,562: calibre_plugins.fanficfare_plugin.jobs(377): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Lost_ but not forgotten-waitingfover-mu2dk8m2.epub FFF: INFO: 2025-02-16 10:57:18,579: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/Lost_ but not forgotten-waitingfover-mu2dk8m2.epub FFF: DEBUG: 2025-02-16 10:57:19,132: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/59...ters/154185277 index: 15 FFF: DEBUG: 2025-02-16 10:57:19,133: base_otw_adapter.py(444): USE view_full_work FFF: DEBUG: 2025-02-16 10:57:19,133: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/59...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:19,133: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/59...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:26,371: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:57:26,372: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:57:26,373: decorators.py(123): random sleep(5.00-15.00):9.38 FFF: DEBUG: 2025-02-16 10:57:35,761: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:57:36,050: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:57:36,447: calibre_plugins.fanficfare_plugin.jobs(216): -------------------------------------------------------------------------------- https://archiveofourown.org/works/63114220 FFF: DEBUG: 2025-02-16 10:57:36,460: configurable.py(1084): use_browser_cache: FFF: DEBUG: 2025-02-16 10:57:36,460: configurable.py(1104): use_basic_cache:true FFF: INFO: 2025-02-16 10:57:36,460: base_otw_adapter.py(142): url: https://archiveofourown.org/works/63...iew_adult=true FFF: INFO: 2025-02-16 10:57:36,460: base_otw_adapter.py(143): metaurl: https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:36,460: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:36,460: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:57:36,461: cache_basic.py(116): ========== HIT (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:36,461: requestable.py(55): Encoding:utf8 FFF: DEBUG: 2025-02-16 10:57:36,554: base_otw_adapter.py(269): numChapters: (1) FFF: DEBUG: 2025-02-16 10:57:36,569: calibre_plugins.fanficfare_plugin.jobs(268): metadata newforanthology: FFF: INFO: 2025-02-16 10:57:36,574: calibre_plugins.fanficfare_plugin.jobs(316): write to /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/the sun in her hands-lone_amaryllis-xdgh_i42.epub FFF: INFO: 2025-02-16 10:57:36,591: base_writer.py(191): Save directly to file: /var/folders/fs/92l0slc97mx2nmqn61sv99v00000gn/C/calibre_7.24.0_tmp_9rp75acy/fanficfare_wizl_god/the sun in her hands-lone_amaryllis-xdgh_i42.epub FFF: DEBUG: 2025-02-16 10:57:36,592: base_otw_adapter.py(430): Getting chapter text for: https://archiveofourown.org/works/63...ters/161628787 index: 0 FFF: DEBUG: 2025-02-16 10:57:36,593: cache_basic.py(116): ========== MISS (GET) BasicCache https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:36,593: fetcher_requests.py(114): ---------- REQ (GET) RequestsFetcher https://archiveofourown.org/works/63...iew_adult=true FFF: DEBUG: 2025-02-16 10:57:51,274: fetcher_requests.py(127): response code:200 FFF: DEBUG: 2025-02-16 10:57:51,275: decorators.py(112): fromcache:False FFF: DEBUG: 2025-02-16 10:57:51,275: decorators.py(123): random sleep(5.00-15.00):8.46 FFF: DEBUG: 2025-02-16 10:57:59,739: requestable.py(55): Encoding:utf8 FFF: INFO: 2025-02-16 10:58:00,021: writer_epub.py(369): Saving EPUB Version 2.0 FFF: INFO: 2025-02-16 10:58:00,599: calibre_plugins.fanficfare_plugin.jobs(147): Download Results: Add https://archiveofourown.org/works/63095977 Download epub completed, 1 chapters. Update https://archiveofourown.org/works/60279193 Update epub completed, added 1 chapters for 4 total. Update https://archiveofourown.org/works/45542815 Update epub completed, added 1 chapters for 40 total. Update https://www.fanfiction.net/s/1443041...nd-Friendships Update epub completed, added 2 chapters, 1 failed chapters, for 12 total. Update https://archiveofourown.org/works/62654551 Update epub completed, added 1 chapters for 12 total. Update https://archiveofourown.org/works/57894925 Update epub completed, added 1 chapters for 19 total. Update https://archiveofourown.org/works/62153836 Update epub completed, added 1 chapters for 6 total. Add https://archiveofourown.org/works/63114085 Download epub completed, 1 chapters. Error https://www.fanfiction.net/s/14441778/1/ HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/s/14441778/1/' Update https://archiveofourown.org/works/62474713 Update epub completed, added 1 chapters for 4 total. Update https://archiveofourown.org/works/60370327 Update epub completed, added 1 chapters for 17 total. Add https://archiveofourown.org/works/63106525 Download epub completed, 6 chapters. Update https://archiveofourown.org/works/55285567 Update epub completed, added 1 chapters for 8 total. Add https://archiveofourown.org/works/63118021 Download epub completed, 1 chapters. Update https://archiveofourown.org/works/62034520 Update epub completed, added 1 chapters for 4 total. Add https://archiveofourown.org/works/63106588 Download epub completed, 1 chapters. Error https://www.fanfiction.net/s/14432506/1/Darkness HTTP Error in FFF 'Page not found or expired in Browser Cache (see FFF setting browser_cache_age_limit)'(428) URL:'https://www.fanfiction.net/s/14432506/1/Darkness' Update https://archiveofourown.org/works/4566726 Update epub completed, added 1 chapters for 11 total. Update https://archiveofourown.org/works/62805346 Update epub completed, added 1 chapters for 11 total. Update https://archiveofourown.org/works/26980552 Update epub completed, added 1 chapters for 26 total. Add https://archiveofourown.org/works/63106225 Download epub completed, 1 chapters. Add https://archiveofourown.org/works/23889022 Download epub completed, 11 chapters. Add https://archiveofourown.org/works/63093589 Download epub completed, 1 chapters. Update https://archiveofourown.org/works/63025459 Update epub completed, added 1 chapters for 2 total. Update https://archiveofourown.org/works/39323223 Update epub completed, added 1 chapters for 49 total. Update https://archiveofourown.org/works/6448987 Update epub completed, added 1 chapters for 33 total. Add https://archiveofourown.org/works/63104056 Download epub completed, 1 chapters. Add https://archiveofourown.org/works/62935378 Download epub completed, 1 chapters. Add https://archiveofourown.org/works/63097162 Download epub completed, 1 chapters. Add https://archiveofourown.org/works/63107011 Download epub completed, 1 chapters. Update https://archiveofourown.org/works/62655478 Update epub completed, added 1 chapters for 4 total. Update https://archiveofourown.org/works/48128839 Update epub completed, added 1 chapters for 45 total. Update https://archiveofourown.org/works/59704243 Update epub completed, added 1 chapters for 16 total. Add https://archiveofourown.org/works/63114220 Download epub completed, 1 chapters. FFF: INFO: 2025-02-16 10:58:00,599: calibre_plugins.fanficfare_plugin.jobs(171): Add https://archiveofourown.org/works/63095977 https://archiveofourown.org/works/63114085 https://archiveofourown.org/works/63106525 https://archiveofourown.org/works/63118021 https://archiveofourown.org/works/63106588 https://archiveofourown.org/works/63106225 https://archiveofourown.org/works/23889022 https://archiveofourown.org/works/63093589 https://archiveofourown.org/works/63104056 https://archiveofourown.org/works/62935378 https://archiveofourown.org/works/63097162 https://archiveofourown.org/works/63107011 https://archiveofourown.org/works/63114220 FFF: INFO: 2025-02-16 10:58:00,599: calibre_plugins.fanficfare_plugin.jobs(171): Update https://archiveofourown.org/works/60279193 https://archiveofourown.org/works/45542815 https://www.fanfiction.net/s/1443041...nd-Friendships https://archiveofourown.org/works/62654551 https://archiveofourown.org/works/57894925 https://archiveofourown.org/works/62153836 https://archiveofourown.org/works/62474713 https://archiveofourown.org/works/60370327 https://archiveofourown.org/works/55285567 https://archiveofourown.org/works/62034520 https://archiveofourown.org/works/4566726 https://archiveofourown.org/works/62805346 https://archiveofourown.org/works/26980552 https://archiveofourown.org/works/63025459 https://archiveofourown.org/works/39323223 https://archiveofourown.org/works/6448987 https://archiveofourown.org/works/62655478 https://archiveofourown.org/works/48128839 https://archiveofourown.org/works/59704243 FFF: INFO: 2025-02-16 10:58:00,599: calibre_plugins.fanficfare_plugin.jobs(171): Error https://www.fanfiction.net/s/14441778/1/ https://www.fanfiction.net/s/14432506/1/Darkness I understand that the problems I'm facing may be out of your hands so I'm continuing to report on this issue mostly to try to clarify things. Thanks for all your effort developing and debugging and even dealing with us users. |
|
![]() |
![]() |
![]() |
Tags |
fanfiction ![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
[GUI Plugin] KindleUnpack - The Plugin | DiapDealer | Plugins | 506 | 02-14-2025 10:52 PM |
[GUI Plugin] Open With | kiwidude | Plugins | 403 | 04-01-2024 09:39 AM |
[GUI Plugin] Marvin XD | Philantrop | Plugins | 126 | 01-29-2017 01:48 PM |
[GUI Plugin] KiNotes | -axel- | Plugins | 0 | 07-14-2013 07:39 PM |
[GUI Plugin] Plugin Updater **Deprecated** | kiwidude | Plugins | 159 | 06-19-2011 01:27 PM |