You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
changedetection.io/changedetectionio/fetch_processor/__init__.py

13 lines
304 B

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)
"""