1) You are likely using --test which restricts the fetched data to fitst two articles from the first two feeds by default
2) Use
from calibre.ptempfile import PersistenTemporaryDirectory
tdir = PersistentTemporaryDirectory()
It will be automatically cleaned up on program exit.
|