summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter
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-01-10 11:10:33 +0100
commit6deb27fdf190191160eab39c682d3acf472edb97 (patch)
treef8d62848256d8e5eea365fe596d088fe5d3797e5 /module/plugins/crypter
parentMerge pull request #470 from vuolter/s/hoster/ExtabitCom (diff)
downloadpyload-6deb27fdf190191160eab39c682d3acf472edb97.tar.xz
New crypter: TnyCz
Merged #466
Diffstat (limited to 'module/plugins/crypter')
-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