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

2 years ago
available_fetchers = [('json_html_plaintext', 'JSON/HTML/Text'), ('image', 'Graphically by image or web-page')]
2 years ago
2 years ago
class fetch_processor():
2 years ago
contents = b''
screenshot = None
2 years ago
datastore = None
2 years ago
2 years ago
"""
base class for all fetch processors
- json_html_plaintext
- image (future)
"""