MCPcopy
hub / github.com/dgtlmoon/changedetection.io / add_watch

Method add_watch

changedetectionio/store/base.py:39–50  ·  view source on GitHub ↗

Add a new watch. Args: url: URL to watch **kwargs: Additional watch parameters Returns: UUID of the created watch

(self, url, **kwargs)

Source from the content-addressed store, hash-verified

37
38 @abstractmethod
39 def add_watch(self, url, **kwargs):
40 """
41 Add a new watch.
42
43 Args:
44 url: URL to watch
45 **kwargs: Additional watch parameters
46
47 Returns:
48 UUID of the created watch
49 """
50 pass
51
52 @abstractmethod
53 def update_watch(self, uuid, update_obj):

Calls

no outgoing calls