diff options
author | igel-kun <mathiaswe@gmx.de> | 2014-03-07 15:40:59 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-03-07 15:40:59 +0100 |
commit | 46d41e6674954362cbb681b5ec541c8885b1b2c7 (patch) | |
tree | ad1f96fe5d92888ff3106efea8d73062de147e5e /module/plugins/crypter | |
parent | PutlockerCom (Firedrive now) and SockshareCom updated. (diff) | |
download | pyload-46d41e6674954362cbb681b5ec541c8885b1b2c7.tar.xz |
New hoster NosuploadCom
New crypter NosvideoCom
Merged #496
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/NosvideoCom.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/module/plugins/crypter/NosvideoCom.py b/module/plugins/crypter/NosvideoCom.py new file mode 100644 index 000000000..49b932fc0 --- /dev/null +++ b/module/plugins/crypter/NosvideoCom.py @@ -0,0 +1,13 @@ +from module.plugins.internal.SimpleCrypter import SimpleCrypter + + +class NosvideoCom(SimpleCrypter): + __name__ = "NosvideoCom" + __type__ = "crypter" + __pattern__ = r"http://(?:www\.)?nosvideo\.com/\?v=\w+" + __version__ = "0.01" + __description__ = """Nosvideo.com Plugin""" + __author_name__ = "igel" + + LINK_PATTERN = r'href="(http://(?:w{3}\.)?nosupload.com/\?d=\w+)"' + TITLE_PATTERN = r"<[tT]itle>Watch (?P<title>.+)</[tT]itle>" |