Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.
/ calibre-recipes Public archive

UNMAINTAINED - See README.md for an alternative

Notifications You must be signed in to change notification settings

dlo9/calibre-recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

UNMAINTAINED

At this time, I'm not actively maintaining this repo. I suggest this repo instead, which has a more up-to-date version of this code.

calibre-recipes

A set of custom recipes for automatic news fetching in Calibre

Debugging

  • Do a test run:
ebook-convert PocketRSS.recipe .epub --dont-download-recipe --test --password <password> --username <username> -vvv
  • Enable browser debugging:
import sys, logging
def enable_logging(br):
    logger = logging.getLogger("mechanize")
    logger.addHandler(logging.StreamHandler(sys.stdout))
    logger.setLevel(logging.DEBUG)
    br.set_debug_http(True)
    br.set_debug_responses(True)
    br.set_debug_redirects(True)
  • Start the Python debugger at a specific line:
import pdb; pdb.set_trace()

Warnings

  • Due to limitations enforced by getpocket.com, PocketRSS will eventually tigger the following error if run too frequently: Too many login attempts were made. Try again in 24 hours or reset your password. The exact limits are not yet known, but were encountered during testing.

About

UNMAINTAINED - See README.md for an alternative

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages