mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-13 21:21:05 +00:00
13 lines
304 B
Python
13 lines
304 B
Python
available_fetchers = [('json_html_plaintext', 'JSON/HTML/Text'), ('image', 'Graphically by image or web-page')]
|
|
|
|
class fetch_processor():
|
|
contents = b''
|
|
screenshot = None
|
|
datastore = None
|
|
|
|
"""
|
|
base class for all fetch processors
|
|
- json_html_plaintext
|
|
- image (future)
|
|
"""
|