Quote:
Originally Posted by unkn0wn
|
The problem in all the recipes is
Quote:
Code:
@property
def nyt_parser(self):
ans = getattr(self, '_nyt_parser', None)
if ans is None:
from calibre.live import load_module
self._nyt_parser = ans = load_module('calibre.web.site_parsers.nytimes')
return ans
|
It's related to a change that "Move NYT JSON parsing code into its own module so it can be shared"