summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-01-10 11:10:00 +0100
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 16:54:31 +0200
commitcb05a1be5033f231a14af8cd7e63f7c6d2fe9d14 (patch)
tree7125bc911daee4df7dfcd6f0f6f1d4afb17e0dff
parentMerge pull request #470 from vuolter/s/hoster/ExtabitCom (diff)
downloadpyload-cb05a1be5033f231a14af8cd7e63f7c6d2fe9d14.tar.xz
New crypter: TnyCz
Merged #466 (cherry picked from commit 6deb27fdf190191160eab39c682d3acf472edb97)
-rw-r--r--module/plugins/crypter/TnyCz.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/module/plugins/crypter/TnyCz.py b/module/plugins/crypter/TnyCz.py
new file mode 100644
index 000000000..d393507c7
--- /dev/null
+++ b/module/plugins/crypter/TnyCz.py
@@ -0,0 +1,38 @@
+# -*- coding: utf-8 -*-
+
+"""
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License,
+ or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, see <http://www.gnu.org/licenses/>.
+
+ @author: Walter Purcaro
+"""
+
+from module.plugins.internal.SimpleCrypter import SimpleCrypter
+
+import re
+
+
+class TnyCz(SimpleCrypter):
+ __name__ = "TnyCz"
+ __type__ = "crypter"
+ __pattern__ = r"http://(?:www\.)?tny\.cz/\w+"
+ __version__ = "0.01"
+ __description__ = """Tny.cz Plugin"""
+ __author_name__ = ("Walter Purcaro")
+ __author_mail__ = ("vuolter@gmail.com")
+
+ TITLE_PATTERN = r'<title>(?P<title>.+) - .+</title>'
+
+ def getLinks(self):
+ m = re.search(r'<a id=\'save_paste\' href="(.+save\.php\?hash=.+)">', self.html)
+ return re.findall(".+", self.load(m.group(1), decode=True)) if m else None