changedetection.io 0.45.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- changedetection.io-0.45.11/LICENSE +201 -0
- changedetection.io-0.45.11/MANIFEST.in +21 -0
- changedetection.io-0.45.11/PKG-INFO +174 -0
- changedetection.io-0.45.11/README-pip.md +99 -0
- changedetection.io-0.45.11/README.md +275 -0
- changedetection.io-0.45.11/changedetection.io.egg-info/PKG-INFO +174 -0
- changedetection.io-0.45.11/changedetection.io.egg-info/SOURCES.txt +219 -0
- changedetection.io-0.45.11/changedetection.io.egg-info/dependency_links.txt +1 -0
- changedetection.io-0.45.11/changedetection.io.egg-info/entry_points.txt +2 -0
- changedetection.io-0.45.11/changedetection.io.egg-info/requires.txt +41 -0
- changedetection.io-0.45.11/changedetection.io.egg-info/top_level.txt +1 -0
- changedetection.io-0.45.11/changedetection.io.egg-info/zip-safe +1 -0
- changedetection.io-0.45.11/changedetection.py +6 -0
- changedetection.io-0.45.11/changedetectionio/__init__.py +163 -0
- changedetection.io-0.45.11/changedetectionio/api/__init__.py +0 -0
- changedetection.io-0.45.11/changedetectionio/api/api_schema.py +117 -0
- changedetection.io-0.45.11/changedetectionio/api/api_v1.py +403 -0
- changedetection.io-0.45.11/changedetectionio/api/auth.py +33 -0
- changedetection.io-0.45.11/changedetectionio/apprise_asset.py +11 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/__init__.py +0 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/browser_steps/__init__.py +241 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/browser_steps/browser_steps.py +286 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/browser_steps/nonContext.py +18 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/check_proxies/__init__.py +118 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/price_data_follower/__init__.py +33 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/tags/README.md +9 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/tags/__init__.py +141 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/tags/form.py +22 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/tags/templates/edit-tag.html +136 -0
- changedetection.io-0.45.11/changedetectionio/blueprint/tags/templates/groups-overview.html +60 -0
- changedetection.io-0.45.11/changedetectionio/content_fetcher.py +766 -0
- changedetection.io-0.45.11/changedetectionio/diff.py +62 -0
- changedetection.io-0.45.11/changedetectionio/flask_app.py +1730 -0
- changedetection.io-0.45.11/changedetectionio/forms.py +583 -0
- changedetection.io-0.45.11/changedetectionio/html_tools.py +441 -0
- changedetection.io-0.45.11/changedetectionio/importer.py +302 -0
- changedetection.io-0.45.11/changedetectionio/model/App.py +66 -0
- changedetection.io-0.45.11/changedetectionio/model/Tag.py +19 -0
- changedetection.io-0.45.11/changedetectionio/model/Watch.py +553 -0
- changedetection.io-0.45.11/changedetectionio/model/__init__.py +0 -0
- changedetection.io-0.45.11/changedetectionio/notification.py +274 -0
- changedetection.io-0.45.11/changedetectionio/processors/README.md +11 -0
- changedetection.io-0.45.11/changedetectionio/processors/__init__.py +136 -0
- changedetection.io-0.45.11/changedetectionio/processors/restock_diff.py +64 -0
- changedetection.io-0.45.11/changedetectionio/processors/text_json_diff.py +355 -0
- changedetection.io-0.45.11/changedetectionio/queuedWatchMetaData.py +10 -0
- changedetection.io-0.45.11/changedetectionio/res/puppeteer_fetch.js +190 -0
- changedetection.io-0.45.11/changedetectionio/res/stock-not-in-stock.js +117 -0
- changedetection.io-0.45.11/changedetectionio/res/xpath_element_scraper.js +235 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/android-chrome-192x192.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/android-chrome-256x256.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/apple-touch-icon.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/browserconfig.xml +9 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/favicon-16x16.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/favicon-32x32.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/favicon.ico +0 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/mstile-150x150.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/safari-pinned-tab.svg +35 -0
- changedetection.io-0.45.11/changedetectionio/static/favicons/site.webmanifest +19 -0
- changedetection.io-0.45.11/changedetectionio/static/images/Generic_Feed-icon.svg +18 -0
- changedetection.io-0.45.11/changedetectionio/static/images/Google-Chrome-icon.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/images/Playwright-icon.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/images/avatar-256x256.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/images/bell-off.svg +4 -0
- changedetection.io-0.45.11/changedetectionio/static/images/beta-logo.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/images/brightdata.svg +58 -0
- changedetection.io-0.45.11/changedetectionio/static/images/copy.svg +40 -0
- changedetection.io-0.45.11/changedetectionio/static/images/email.svg +37 -0
- changedetection.io-0.45.11/changedetectionio/static/images/generic-icon.svg +3 -0
- changedetection.io-0.45.11/changedetectionio/static/images/gradient-border.png +0 -0
- changedetection.io-0.45.11/changedetectionio/static/images/notice.svg +51 -0
- changedetection.io-0.45.11/changedetectionio/static/images/oxylabs.svg +57 -0
- changedetection.io-0.45.11/changedetectionio/static/images/pause.svg +83 -0
- changedetection.io-0.45.11/changedetectionio/static/images/pdf-icon.svg +9 -0
- changedetection.io-0.45.11/changedetectionio/static/images/play.svg +121 -0
- changedetection.io-0.45.11/changedetectionio/static/images/price-tag-icon.svg +2 -0
- changedetection.io-0.45.11/changedetectionio/static/images/spread-white.svg +20 -0
- changedetection.io-0.45.11/changedetectionio/static/images/spread.svg +5 -0
- changedetection.io-0.45.11/changedetectionio/static/js/browser-steps.js +469 -0
- changedetection.io-0.45.11/changedetectionio/static/js/diff-overview.js +94 -0
- changedetection.io-0.45.11/changedetectionio/static/js/diff-render.js +120 -0
- changedetection.io-0.45.11/changedetectionio/static/js/diff.min.js +38 -0
- changedetection.io-0.45.11/changedetectionio/static/js/global-settings.js +26 -0
- changedetection.io-0.45.11/changedetectionio/static/js/jquery-3.6.0.min.js +2 -0
- changedetection.io-0.45.11/changedetectionio/static/js/limit.js +56 -0
- changedetection.io-0.45.11/changedetectionio/static/js/notifications.js +59 -0
- changedetection.io-0.45.11/changedetectionio/static/js/recheck-proxy.js +87 -0
- changedetection.io-0.45.11/changedetectionio/static/js/stepper.js +34 -0
- changedetection.io-0.45.11/changedetectionio/static/js/tabs.js +49 -0
- changedetection.io-0.45.11/changedetectionio/static/js/toggle-theme.js +52 -0
- changedetection.io-0.45.11/changedetectionio/static/js/vis.js +29 -0
- changedetection.io-0.45.11/changedetectionio/static/js/visual-selector.js +251 -0
- changedetection.io-0.45.11/changedetectionio/static/js/watch-overview.js +61 -0
- changedetection.io-0.45.11/changedetectionio/static/js/watch-settings.js +13 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/.dockerignore +3 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/.gitignore +3 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/diff.css +231 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/package.json +17 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/pure-min.css +11 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/diff.scss +136 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_arrows.scss +26 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_browser-steps.scss +99 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_darkmode.scss +25 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_extra_browsers.scss +24 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_extra_proxies.scss +69 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_love.scss +38 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_menu.scss +25 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_pagination.scss +37 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_spinners.scss +44 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_variables.scss +175 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/parts/_visualselector.scss +28 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/scss/styles.scss +1098 -0
- changedetection.io-0.45.11/changedetectionio/static/styles/styles.css +1180 -0
- changedetection.io-0.45.11/changedetectionio/store.py +862 -0
- changedetection.io-0.45.11/changedetectionio/templates/_common_fields.jinja +125 -0
- changedetection.io-0.45.11/changedetectionio/templates/_helpers.jinja +62 -0
- changedetection.io-0.45.11/changedetectionio/templates/base.html +212 -0
- changedetection.io-0.45.11/changedetectionio/templates/clear_all_history.html +49 -0
- changedetection.io-0.45.11/changedetectionio/templates/diff.html +167 -0
- changedetection.io-0.45.11/changedetectionio/templates/edit.html +504 -0
- changedetection.io-0.45.11/changedetectionio/templates/import.html +125 -0
- changedetection.io-0.45.11/changedetectionio/templates/login.html +23 -0
- changedetection.io-0.45.11/changedetectionio/templates/notification-log.html +19 -0
- changedetection.io-0.45.11/changedetectionio/templates/preview.html +72 -0
- changedetection.io-0.45.11/changedetectionio/templates/settings.html +257 -0
- changedetection.io-0.45.11/changedetectionio/templates/svgs/dark-mode-toggle-icon.svg +1 -0
- changedetection.io-0.45.11/changedetectionio/templates/svgs/github.svg +6 -0
- changedetection.io-0.45.11/changedetectionio/templates/svgs/light-mode-toggle-icon.svg +1 -0
- changedetection.io-0.45.11/changedetectionio/templates/svgs/search-icon.svg +1 -0
- changedetection.io-0.45.11/changedetectionio/templates/watch-overview.html +210 -0
- changedetection.io-0.45.11/changedetectionio/tests/__init__.py +2 -0
- changedetection.io-0.45.11/changedetectionio/tests/conftest.py +58 -0
- changedetection.io-0.45.11/changedetectionio/tests/custom_browser_url/__init__.py +1 -0
- changedetection.io-0.45.11/changedetectionio/tests/custom_browser_url/test_custom_browser_url.py +89 -0
- changedetection.io-0.45.11/changedetectionio/tests/fetchers/__init__.py +2 -0
- changedetection.io-0.45.11/changedetectionio/tests/fetchers/conftest.py +3 -0
- changedetection.io-0.45.11/changedetectionio/tests/fetchers/test_content.py +40 -0
- changedetection.io-0.45.11/changedetectionio/tests/import/spreadsheet.xlsx +0 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/__init__.py +2 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/conftest.py +14 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/proxies.json-example +10 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/squid-auth.conf +48 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/squid-passwords.txt +1 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/squid.conf +41 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/test_multiple_proxy.py +37 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/test_noproxy.py +77 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/test_proxy.py +19 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_list/test_select_custom_proxy.py +50 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_socks5/proxies.json-example +6 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_socks5/proxies.json-example-noauth +6 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_socks5/test_socks5_proxy.py +63 -0
- changedetection.io-0.45.11/changedetectionio/tests/proxy_socks5/test_socks5_proxy_sources.py +52 -0
- changedetection.io-0.45.11/changedetectionio/tests/restock/__init__.py +2 -0
- changedetection.io-0.45.11/changedetectionio/tests/restock/conftest.py +3 -0
- changedetection.io-0.45.11/changedetectionio/tests/restock/test_restock.py +106 -0
- changedetection.io-0.45.11/changedetectionio/tests/smtp/smtp-test-server.py +42 -0
- changedetection.io-0.45.11/changedetectionio/tests/smtp/test_notification_smtp.py +165 -0
- changedetection.io-0.45.11/changedetectionio/tests/test.pdf +0 -0
- changedetection.io-0.45.11/changedetectionio/tests/test2.pdf +0 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_access_control.py +172 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_add_replace_remove_filter.py +175 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_api.py +381 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_auth.py +38 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_automatic_follow_ldjson_price.py +234 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_backend.py +147 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_backup.py +51 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_block_while_text_present.py +139 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_clone.py +30 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_css_selector.py +252 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_element_removal.py +166 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_encoding.py +81 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_errorhandling.py +130 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_extract_csv.py +70 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_extract_regex.py +233 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_filter_exist_changes.py +120 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_filter_failure_notification.py +161 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_group.py +323 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_history_consistency.py +84 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_html_to_text.py +38 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_ignore_regex_text.py +47 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_ignore_text.py +252 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_ignorehighlighter.py +57 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_ignorehyperlinks.py +125 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_ignorestatuscode.py +132 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_ignorewhitespace.py +96 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_import.py +218 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_jinja2.py +33 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_jsonpath_jq_selector.py +493 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_nonrenderable_pages.py +102 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_notification.py +349 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_notification_errors.py +66 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_obfuscations.py +43 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_pdf.py +75 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_request.py +324 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_rss.py +165 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_search.py +74 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_security.py +66 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_share_watch.py +80 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_source.py +93 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_trigger.py +145 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_trigger_regex.py +79 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_trigger_regex_with_filter.py +84 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_unique_lines.py +103 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_watch_fields_storage.py +155 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_xpath_selector.py +510 -0
- changedetection.io-0.45.11/changedetectionio/tests/test_xpath_selector_unit.py +203 -0
- changedetection.io-0.45.11/changedetectionio/tests/unit/__init__.py +1 -0
- changedetection.io-0.45.11/changedetectionio/tests/unit/test-content/README.md +5 -0
- changedetection.io-0.45.11/changedetectionio/tests/unit/test-content/after-2.txt +3 -0
- changedetection.io-0.45.11/changedetectionio/tests/unit/test-content/after.txt +7 -0
- changedetection.io-0.45.11/changedetectionio/tests/unit/test-content/before.txt +5 -0
- changedetection.io-0.45.11/changedetectionio/tests/unit/test_notification_diff.py +81 -0
- changedetection.io-0.45.11/changedetectionio/tests/unit/test_watch_model.py +54 -0
- changedetection.io-0.45.11/changedetectionio/tests/util.py +242 -0
- changedetection.io-0.45.11/changedetectionio/tests/visualselector/__init__.py +2 -0
- changedetection.io-0.45.11/changedetectionio/tests/visualselector/conftest.py +3 -0
- changedetection.io-0.45.11/changedetectionio/tests/visualselector/test_fetch_data.py +142 -0
- changedetection.io-0.45.11/changedetectionio/update_worker.py +506 -0
- changedetection.io-0.45.11/requirements.txt +74 -0
- changedetection.io-0.45.11/setup.cfg +4 -0
- changedetection.io-0.45.11/setup.py +72 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
recursive-include changedetectionio/api *
|
|
2
|
+
recursive-include changedetectionio/blueprint *
|
|
3
|
+
recursive-include changedetectionio/model *
|
|
4
|
+
recursive-include changedetectionio/processors *
|
|
5
|
+
recursive-include changedetectionio/res *
|
|
6
|
+
recursive-include changedetectionio/static *
|
|
7
|
+
recursive-include changedetectionio/templates *
|
|
8
|
+
recursive-include changedetectionio/tests *
|
|
9
|
+
prune changedetectionio/static/package-lock.json
|
|
10
|
+
prune changedetectionio/static/styles/node_modules
|
|
11
|
+
prune changedetectionio/static/styles/package-lock.json
|
|
12
|
+
include changedetection.py
|
|
13
|
+
include requirements.txt
|
|
14
|
+
include README-pip.md
|
|
15
|
+
global-exclude *.pyc
|
|
16
|
+
global-exclude node_modules
|
|
17
|
+
global-exclude venv
|
|
18
|
+
|
|
19
|
+
global-exclude test-datastore
|
|
20
|
+
global-exclude changedetection.io*dist-info
|
|
21
|
+
global-exclude changedetectionio/tests/proxy_socks5/test-datastore
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: changedetection.io
|
|
3
|
+
Version: 0.45.11
|
|
4
|
+
Summary: Website change detection and monitoring service, detect changes to web pages and send alerts/notifications.
|
|
5
|
+
Home-page: https://changedetection.io
|
|
6
|
+
Author: dgtlmoon
|
|
7
|
+
License: Apache License 2.0
|
|
8
|
+
Keywords: website change monitor for changes notification change detection alerts tracking website tracker change alert website and monitoring
|
|
9
|
+
Classifier: Intended Audience :: Customer Service
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Education
|
|
12
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
13
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
14
|
+
Classifier: Intended Audience :: Healthcare Industry
|
|
15
|
+
Classifier: Intended Audience :: Information Technology
|
|
16
|
+
Classifier: Intended Audience :: Legal Industry
|
|
17
|
+
Classifier: Intended Audience :: Manufacturing
|
|
18
|
+
Classifier: Intended Audience :: Other Audience
|
|
19
|
+
Classifier: Intended Audience :: Religion
|
|
20
|
+
Classifier: Intended Audience :: Science/Research
|
|
21
|
+
Classifier: Intended Audience :: System Administrators
|
|
22
|
+
Classifier: Intended Audience :: Telecommunications Industry
|
|
23
|
+
Classifier: Topic :: Education
|
|
24
|
+
Classifier: Topic :: Internet
|
|
25
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
26
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
|
27
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking
|
|
28
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
|
|
29
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
30
|
+
Classifier: Topic :: Office/Business
|
|
31
|
+
Classifier: Topic :: Other/Nonlisted Topic
|
|
32
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
33
|
+
Classifier: Topic :: Text Processing :: Markup :: HTML
|
|
34
|
+
Classifier: Topic :: Utilities
|
|
35
|
+
Requires-Python: >= 3.10
|
|
36
|
+
Description-Content-Type: text/markdown
|
|
37
|
+
License-File: LICENSE
|
|
38
|
+
Requires-Dist: eventlet>=0.33.3
|
|
39
|
+
Requires-Dist: feedgen~=0.9
|
|
40
|
+
Requires-Dist: flask-compress
|
|
41
|
+
Requires-Dist: flask-login>=0.6.3
|
|
42
|
+
Requires-Dist: flask-paginate
|
|
43
|
+
Requires-Dist: flask_expects_json~=1.7
|
|
44
|
+
Requires-Dist: flask_restful
|
|
45
|
+
Requires-Dist: flask_wtf~=1.2
|
|
46
|
+
Requires-Dist: flask~=2.3
|
|
47
|
+
Requires-Dist: inscriptis~=2.2
|
|
48
|
+
Requires-Dist: pytz
|
|
49
|
+
Requires-Dist: timeago~=1.0
|
|
50
|
+
Requires-Dist: validators~=0.21
|
|
51
|
+
Requires-Dist: brotli~=1.0
|
|
52
|
+
Requires-Dist: requests[socks]
|
|
53
|
+
Requires-Dist: urllib3>1.26
|
|
54
|
+
Requires-Dist: chardet>2.3.0
|
|
55
|
+
Requires-Dist: wtforms~=3.0
|
|
56
|
+
Requires-Dist: jsonpath-ng~=1.5.3
|
|
57
|
+
Requires-Dist: dnspython~=2.4
|
|
58
|
+
Requires-Dist: apprise~=1.7.1
|
|
59
|
+
Requires-Dist: paho-mqtt
|
|
60
|
+
Requires-Dist: cryptography~=3.4
|
|
61
|
+
Requires-Dist: beautifulsoup4
|
|
62
|
+
Requires-Dist: lxml
|
|
63
|
+
Requires-Dist: elementpath
|
|
64
|
+
Requires-Dist: selenium~=4.14.0
|
|
65
|
+
Requires-Dist: werkzeug~=3.0
|
|
66
|
+
Requires-Dist: jinja2~=3.1
|
|
67
|
+
Requires-Dist: jinja2-time
|
|
68
|
+
Requires-Dist: openpyxl
|
|
69
|
+
Requires-Dist: jq~=1.3; python_version >= "3.8" and sys_platform == "darwin"
|
|
70
|
+
Requires-Dist: jq~=1.3; python_version >= "3.8" and sys_platform == "linux"
|
|
71
|
+
Requires-Dist: pillow
|
|
72
|
+
Requires-Dist: pytest~=7.2
|
|
73
|
+
Requires-Dist: pytest-flask~=1.2
|
|
74
|
+
Requires-Dist: jsonschema==4.17.3
|
|
75
|
+
|
|
76
|
+
## Web Site Change Detection, Monitoring and Notification.
|
|
77
|
+
|
|
78
|
+
Live your data-life pro-actively, track website content changes and receive notifications via Discord, Email, Slack, Telegram and 70+ more
|
|
79
|
+
|
|
80
|
+
[<img src="https://raw.githubusercontent.com/dgtlmoon/changedetection.io/master/docs/screenshot.png" style="max-width:100%;" alt="Self-hosted web page change monitoring, list of websites with changes" title="Self-hosted web page change monitoring, list of websites with changes" />](https://changedetection.io)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
[**Don't have time? Let us host it for you! try our extremely affordable subscription use our proxies and support!**](https://changedetection.io)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Target specific parts of the webpage using the Visual Selector tool.
|
|
87
|
+
|
|
88
|
+
Available when connected to a <a href="https://github.com/dgtlmoon/changedetection.io/wiki/Playwright-content-fetcher">playwright content fetcher</a> (included as part of our subscription service)
|
|
89
|
+
|
|
90
|
+
[<img src="https://raw.githubusercontent.com/dgtlmoon/changedetection.io/master/docs/visualselector-anim.gif" style="max-width:100%;" alt="Select parts and elements of a web page to monitor for changes" title="Select parts and elements of a web page to monitor for changes" />](https://changedetection.io?src=pip)
|
|
91
|
+
|
|
92
|
+
### Easily see what changed, examine by word, line, or individual character.
|
|
93
|
+
|
|
94
|
+
[<img src="https://raw.githubusercontent.com/dgtlmoon/changedetection.io/master/docs/screenshot-diff.png" style="max-width:100%;" alt="Self-hosted web page change monitoring context difference " title="Self-hosted web page change monitoring context difference " />](https://changedetection.io?src=pip)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Perform interactive browser steps
|
|
98
|
+
|
|
99
|
+
Fill in text boxes, click buttons and more, setup your changedetection scenario.
|
|
100
|
+
|
|
101
|
+
Using the **Browser Steps** configuration, add basic steps before performing change detection, such as logging into websites, adding a product to a cart, accept cookie logins, entering dates and refining searches.
|
|
102
|
+
|
|
103
|
+
[<img src="docs/browsersteps-anim.gif" style="max-width:100%;" alt="Website change detection with interactive browser steps, detect changes behind login and password, search queries and more" title="Website change detection with interactive browser steps, detect changes behind login and password, search queries and more" />](https://changedetection.io?src=pip)
|
|
104
|
+
|
|
105
|
+
After **Browser Steps** have been run, then visit the **Visual Selector** tab to refine the content you're interested in.
|
|
106
|
+
Requires Playwright to be enabled.
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Example use cases
|
|
110
|
+
|
|
111
|
+
- Products and services have a change in pricing
|
|
112
|
+
- _Out of stock notification_ and _Back In stock notification_
|
|
113
|
+
- Monitor and track PDF file changes, know when a PDF file has text changes.
|
|
114
|
+
- Governmental department updates (changes are often only on their websites)
|
|
115
|
+
- New software releases, security advisories when you're not on their mailing list.
|
|
116
|
+
- Festivals with changes
|
|
117
|
+
- Discogs restock alerts and monitoring
|
|
118
|
+
- Realestate listing changes
|
|
119
|
+
- Know when your favourite whiskey is on sale, or other special deals are announced before anyone else
|
|
120
|
+
- COVID related news from government websites
|
|
121
|
+
- University/organisation news from their website
|
|
122
|
+
- Detect and monitor changes in JSON API responses
|
|
123
|
+
- JSON API monitoring and alerting
|
|
124
|
+
- Changes in legal and other documents
|
|
125
|
+
- Trigger API calls via notifications when text appears on a website
|
|
126
|
+
- Glue together APIs using the JSON filter and JSON notifications
|
|
127
|
+
- Create RSS feeds based on changes in web content
|
|
128
|
+
- Monitor HTML source code for unexpected changes, strengthen your PCI compliance
|
|
129
|
+
- You have a very sensitive list of URLs to watch and you do _not_ want to use the paid alternatives. (Remember, _you_ are the product)
|
|
130
|
+
- Get notified when certain keywords appear in Twitter search results
|
|
131
|
+
- Proactively search for jobs, get notified when companies update their careers page, search job portals for keywords.
|
|
132
|
+
- Get alerts when new job positions are open on Bamboo HR and other job platforms
|
|
133
|
+
- Website defacement monitoring
|
|
134
|
+
- Pokémon Card Restock Tracker / Pokémon TCG Tracker
|
|
135
|
+
- RegTech - stay ahead of regulatory changes, regulatory compliance
|
|
136
|
+
|
|
137
|
+
_Need an actual Chrome runner with Javascript support? We support fetching via WebDriver and Playwright!</a>_
|
|
138
|
+
|
|
139
|
+
#### Key Features
|
|
140
|
+
|
|
141
|
+
- Lots of trigger filters, such as "Trigger on text", "Remove text by selector", "Ignore text", "Extract text", also using regular-expressions!
|
|
142
|
+
- Target elements with xPath(1.0) and CSS Selectors, Easily monitor complex JSON with JSONPath or jq
|
|
143
|
+
- Switch between fast non-JS and Chrome JS based "fetchers"
|
|
144
|
+
- Track changes in PDF files (Monitor text changed in the PDF, Also monitor PDF filesize and checksums)
|
|
145
|
+
- Easily specify how often a site should be checked
|
|
146
|
+
- Execute JS before extracting text (Good for logging in, see examples in the UI!)
|
|
147
|
+
- Override Request Headers, Specify `POST` or `GET` and other methods
|
|
148
|
+
- Use the "Visual Selector" to help target specific elements
|
|
149
|
+
- Configurable [proxy per watch](https://github.com/dgtlmoon/changedetection.io/wiki/Proxy-configuration)
|
|
150
|
+
- Send a screenshot with the notification when a change is detected in the web page
|
|
151
|
+
|
|
152
|
+
We [recommend and use Bright Data](https://brightdata.grsm.io/n0r16zf7eivq) global proxy services, Bright Data will match any first deposit up to $100 using our signup link.
|
|
153
|
+
|
|
154
|
+
[Oxylabs](https://oxylabs.go2cloud.org/SH2d) is also an excellent proxy provider and well worth using, they offer Residental, ISP, Rotating and many other proxy types to suit your project.
|
|
155
|
+
|
|
156
|
+
Please :star: star :star: this project and help it grow! https://github.com/dgtlmoon/changedetection.io/
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
$ pip3 install changedetection.io
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
Specify a target for the *datastore path* with `-d` (required) and a *listening port* with `-p` (defaults to `5000`)
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
$ changedetection.io -d /path/to/empty/data/dir -p 5000
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
Then visit http://127.0.0.1:5000 , You should now be able to access the UI.
|
|
172
|
+
|
|
173
|
+
See https://changedetection.io for more information.
|
|
174
|
+
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
## Web Site Change Detection, Monitoring and Notification.
|
|
2
|
+
|
|
3
|
+
Live your data-life pro-actively, track website content changes and receive notifications via Discord, Email, Slack, Telegram and 70+ more
|
|
4
|
+
|
|
5
|
+
[<img src="https://raw.githubusercontent.com/dgtlmoon/changedetection.io/master/docs/screenshot.png" style="max-width:100%;" alt="Self-hosted web page change monitoring, list of websites with changes" title="Self-hosted web page change monitoring, list of websites with changes" />](https://changedetection.io)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
[**Don't have time? Let us host it for you! try our extremely affordable subscription use our proxies and support!**](https://changedetection.io)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Target specific parts of the webpage using the Visual Selector tool.
|
|
12
|
+
|
|
13
|
+
Available when connected to a <a href="https://github.com/dgtlmoon/changedetection.io/wiki/Playwright-content-fetcher">playwright content fetcher</a> (included as part of our subscription service)
|
|
14
|
+
|
|
15
|
+
[<img src="https://raw.githubusercontent.com/dgtlmoon/changedetection.io/master/docs/visualselector-anim.gif" style="max-width:100%;" alt="Select parts and elements of a web page to monitor for changes" title="Select parts and elements of a web page to monitor for changes" />](https://changedetection.io?src=pip)
|
|
16
|
+
|
|
17
|
+
### Easily see what changed, examine by word, line, or individual character.
|
|
18
|
+
|
|
19
|
+
[<img src="https://raw.githubusercontent.com/dgtlmoon/changedetection.io/master/docs/screenshot-diff.png" style="max-width:100%;" alt="Self-hosted web page change monitoring context difference " title="Self-hosted web page change monitoring context difference " />](https://changedetection.io?src=pip)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Perform interactive browser steps
|
|
23
|
+
|
|
24
|
+
Fill in text boxes, click buttons and more, setup your changedetection scenario.
|
|
25
|
+
|
|
26
|
+
Using the **Browser Steps** configuration, add basic steps before performing change detection, such as logging into websites, adding a product to a cart, accept cookie logins, entering dates and refining searches.
|
|
27
|
+
|
|
28
|
+
[<img src="docs/browsersteps-anim.gif" style="max-width:100%;" alt="Website change detection with interactive browser steps, detect changes behind login and password, search queries and more" title="Website change detection with interactive browser steps, detect changes behind login and password, search queries and more" />](https://changedetection.io?src=pip)
|
|
29
|
+
|
|
30
|
+
After **Browser Steps** have been run, then visit the **Visual Selector** tab to refine the content you're interested in.
|
|
31
|
+
Requires Playwright to be enabled.
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Example use cases
|
|
35
|
+
|
|
36
|
+
- Products and services have a change in pricing
|
|
37
|
+
- _Out of stock notification_ and _Back In stock notification_
|
|
38
|
+
- Monitor and track PDF file changes, know when a PDF file has text changes.
|
|
39
|
+
- Governmental department updates (changes are often only on their websites)
|
|
40
|
+
- New software releases, security advisories when you're not on their mailing list.
|
|
41
|
+
- Festivals with changes
|
|
42
|
+
- Discogs restock alerts and monitoring
|
|
43
|
+
- Realestate listing changes
|
|
44
|
+
- Know when your favourite whiskey is on sale, or other special deals are announced before anyone else
|
|
45
|
+
- COVID related news from government websites
|
|
46
|
+
- University/organisation news from their website
|
|
47
|
+
- Detect and monitor changes in JSON API responses
|
|
48
|
+
- JSON API monitoring and alerting
|
|
49
|
+
- Changes in legal and other documents
|
|
50
|
+
- Trigger API calls via notifications when text appears on a website
|
|
51
|
+
- Glue together APIs using the JSON filter and JSON notifications
|
|
52
|
+
- Create RSS feeds based on changes in web content
|
|
53
|
+
- Monitor HTML source code for unexpected changes, strengthen your PCI compliance
|
|
54
|
+
- You have a very sensitive list of URLs to watch and you do _not_ want to use the paid alternatives. (Remember, _you_ are the product)
|
|
55
|
+
- Get notified when certain keywords appear in Twitter search results
|
|
56
|
+
- Proactively search for jobs, get notified when companies update their careers page, search job portals for keywords.
|
|
57
|
+
- Get alerts when new job positions are open on Bamboo HR and other job platforms
|
|
58
|
+
- Website defacement monitoring
|
|
59
|
+
- Pokémon Card Restock Tracker / Pokémon TCG Tracker
|
|
60
|
+
- RegTech - stay ahead of regulatory changes, regulatory compliance
|
|
61
|
+
|
|
62
|
+
_Need an actual Chrome runner with Javascript support? We support fetching via WebDriver and Playwright!</a>_
|
|
63
|
+
|
|
64
|
+
#### Key Features
|
|
65
|
+
|
|
66
|
+
- Lots of trigger filters, such as "Trigger on text", "Remove text by selector", "Ignore text", "Extract text", also using regular-expressions!
|
|
67
|
+
- Target elements with xPath(1.0) and CSS Selectors, Easily monitor complex JSON with JSONPath or jq
|
|
68
|
+
- Switch between fast non-JS and Chrome JS based "fetchers"
|
|
69
|
+
- Track changes in PDF files (Monitor text changed in the PDF, Also monitor PDF filesize and checksums)
|
|
70
|
+
- Easily specify how often a site should be checked
|
|
71
|
+
- Execute JS before extracting text (Good for logging in, see examples in the UI!)
|
|
72
|
+
- Override Request Headers, Specify `POST` or `GET` and other methods
|
|
73
|
+
- Use the "Visual Selector" to help target specific elements
|
|
74
|
+
- Configurable [proxy per watch](https://github.com/dgtlmoon/changedetection.io/wiki/Proxy-configuration)
|
|
75
|
+
- Send a screenshot with the notification when a change is detected in the web page
|
|
76
|
+
|
|
77
|
+
We [recommend and use Bright Data](https://brightdata.grsm.io/n0r16zf7eivq) global proxy services, Bright Data will match any first deposit up to $100 using our signup link.
|
|
78
|
+
|
|
79
|
+
[Oxylabs](https://oxylabs.go2cloud.org/SH2d) is also an excellent proxy provider and well worth using, they offer Residental, ISP, Rotating and many other proxy types to suit your project.
|
|
80
|
+
|
|
81
|
+
Please :star: star :star: this project and help it grow! https://github.com/dgtlmoon/changedetection.io/
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
$ pip3 install changedetection.io
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Specify a target for the *datastore path* with `-d` (required) and a *listening port* with `-p` (defaults to `5000`)
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
$ changedetection.io -d /path/to/empty/data/dir -p 5000
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
Then visit http://127.0.0.1:5000 , You should now be able to access the UI.
|
|
97
|
+
|
|
98
|
+
See https://changedetection.io for more information.
|
|
99
|
+
|