API Reference
The WebWatchr consists of three parts.
web_watchr
: This module contains theweb_watchr.Watchr
class that orchestrates the whole polling, comparing, and alerting.web_watchr.compare
: This module contains classes that can be used to check if the state has changed. If you want to implement your own comparer, you need to inherit fromweb_watchr.compare.AbstractComparer
.web_watchr.alert
: This module contains classes that can be used to send out alerts of a new state. If you want to implement your own comparer, you need to inherit fromweb_watchr.alert.AbstractAlerter
.
web_watchr
web_watchr.Watchr
Bases: BaseModel
Central class that orchestrates the polling, comparing, and alerting process.
Attributes: |
|
---|
Source code in src/web_watchr/watchr.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
poller: Callable[[Playwright], str]
property
The poller function that scrapes the text from the website.
__call__()
Main method that orchestrates the polling, comparing, and alerting process.
When called the poller function is called to scrape the text from the website. The text is then compared to the previous state. If there are changes, an alert is sent out.
Source code in src/web_watchr/watchr.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
set_poller(f)
Decorator to set the poller function.
The wrapper returns the function unchanged, but stores it in the _poller
attribute.
Parameters: |
|
---|
Returns: |
|
---|
Source code in src/web_watchr/watchr.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
web_watchr.compare
web_watchr.compare.Status
Bases: Enum
Enum representing the status of a comparison.
Convenience enum because I got confused with booleans.
Attributes: |
|
---|
Source code in src/web_watchr/compare/abstract_comparer.py
7 8 9 10 11 12 13 14 15 16 17 18 |
|
web_watchr.compare.AbstractComparer
Bases: BaseModel
, ABC
Decide if a text has changed.
Source code in src/web_watchr/compare/abstract_comparer.py
21 22 23 24 25 26 27 28 29 30 31 |
|
__call__(text)
abstractmethod
Decide if a text has changed.
A new comparer must implement this method. The method should compare the text with the previous state and return the status of the comparison.
Source code in src/web_watchr/compare/abstract_comparer.py
24 25 26 27 28 29 30 31 |
|
web_watchr.compare.DummyComparer
Bases: AbstractComparer
A comparer that always returns Status.CHANGED
.
Source code in src/web_watchr/compare/dummy_comparer.py
4 5 6 7 8 9 |
|
__call__(text)
Always return Status.CHANGED
.
Source code in src/web_watchr/compare/dummy_comparer.py
7 8 9 |
|
web_watchr.compare.FSComparer
Bases: AbstractComparer
A comparer that compares the text with the content of a file.
Attributes: |
|
---|
Source code in src/web_watchr/compare/fs_comparer.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
|
cache_path: Path
property
The path to the cache file.
Creates the cache directory if it does not exist.
__call__(text)
Compare the text with the content of the cache file.
Parameters: |
|
---|
Returns: |
|
---|
Source code in src/web_watchr/compare/fs_comparer.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|
web_watchr.alert
web_watchr.alert.AbstractAlerter
Bases: BaseModel
, ABC
Send an alert.
Source code in src/web_watchr/alert/abstract_alerter.py
6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
__call__(text)
abstractmethod
Send an alert.
A new alerter must implement this method. The method should send the alert with the given text.
Parameters: |
|
---|
Source code in src/web_watchr/alert/abstract_alerter.py
9 10 11 12 13 14 15 16 17 18 |
|
web_watchr.alert.PrintAlerter
Bases: AbstractAlerter
Print the alert to the standard output.
Source code in src/web_watchr/alert/print_alerter.py
4 5 6 7 8 9 10 11 12 13 |
|
__call__(text)
Print the alert to the standard output.
Parameters: |
|
---|
Source code in src/web_watchr/alert/print_alerter.py
7 8 9 10 11 12 13 |
|
web_watchr.alert.TelegramAlerter
Bases: AbstractAlerter
Sends a message to a telegram chat.
For this alerter to work, you need to create a telegram bot and get its token. Furthermore, the bot needs to be added to the chat you want to send messages to and you need to retrieve the chat ID of the chat (e.g., like this).
Attributes: |
|
---|
Source code in src/web_watchr/alert/telegram_alerter.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|
bot: Bot
property
Telegram bot instance
__call__(text)
Send a message to a telegram chat.
Parameters: |
|
---|
Source code in src/web_watchr/alert/telegram_alerter.py
34 35 36 37 38 39 40 41 |
|