diff --git a/couchpotato/core/providers/userscript/letterboxd/__init__.py b/couchpotato/core/providers/userscript/letterboxd/__init__.py new file mode 100644 index 00000000..c8c17977 --- /dev/null +++ b/couchpotato/core/providers/userscript/letterboxd/__init__.py @@ -0,0 +1,6 @@ +from .main import Letterboxd + +def start(): + return Letterboxd() + +config = [] diff --git a/couchpotato/core/providers/userscript/letterboxd/main.py b/couchpotato/core/providers/userscript/letterboxd/main.py new file mode 100644 index 00000000..c0d91d79 --- /dev/null +++ b/couchpotato/core/providers/userscript/letterboxd/main.py @@ -0,0 +1,6 @@ +from couchpotato.core.providers.userscript.base import UserscriptBase + + +class Letterboxd(UserscriptBase): + + includes = ['*://letterboxd.com/film/*']