You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Program flow goes through _pagination and _process for each post, including the skipped posts, and _process yields the correct attribute dictionary, so this doesn't seem like a problem with the patreon extractor specifically.
Edit 2: With the given configuration the "post" hook callback in job.py doesn't even seem to be firing at all? It may be that "event": "post" is actually broken. For text-only posts (and only text-only posts) [patreon][debug] Active postprocessor modules: [MetadataPP] doesn't even fire.
The text was updated successfully, but these errors were encountered:
The mode must be specified within the specific extractor (inheritance doesn't work) and you have to supply an explicit filename template or else it uses metadata.json and overwrites itself.
(with the event "post" as instructed) patreon posts that only have text content are skipped entirely as of the latest git revision.
"event": "post" must be specified inside the post processor settings, otherwise it uses "event": "file" by default. The comment you linked has all 3 required settings (name, event, filename) in the same post processor block and it works as promised
The mode must be specified within the specific extractor (inheritance doesn't work)
Yeah, but "mode": "json" is the default and doesn't need to be specified explicitly
Using configuration
(with the event "post" as instructed) patreon posts that only have text content are skipped entirely as of the latest git revision.
See also #866 (comment)
Program flow goes through
_pagination
and_process
for each post, including the skipped posts, and_process
yields the correct attribute dictionary, so this doesn't seem like a problem with the patreon extractor specifically.Edit 2: With the given configuration the "post" hook callback in
job.py
doesn't even seem to be firing at all? It may be that"event": "post"
is actually broken. For text-only posts (and only text-only posts)[patreon][debug] Active postprocessor modules: [MetadataPP]
doesn't even fire.The text was updated successfully, but these errors were encountered: