Automatically offer to track LD+JSON product price data (#1204)

This commit is contained in:
dgtlmoon
2022-12-08 17:47:22 +01:00
parent f7bb8a0afa
commit b58fd995b5
11 changed files with 289 additions and 14 deletions

View File

@@ -1343,6 +1343,10 @@ def changedetection_app(config=None, datastore_o=None):
import changedetectionio.blueprint.browser_steps as browser_steps
app.register_blueprint(browser_steps.construct_blueprint(datastore), url_prefix='/browser-steps')
import changedetectionio.blueprint.price_data_follower as price_data_follower
app.register_blueprint(price_data_follower.construct_blueprint(datastore), url_prefix='/price_data_follower')
# @todo handle ctrl break
ticker_thread = threading.Thread(target=ticker_thread_check_time_launch_checks).start()
threading.Thread(target=notification_runner).start()