diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2011-10-17 22:07:14 +0200 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2011-10-17 22:07:14 +0200 |
commit | c46ffb8338ebb2d8272e965b2fcee6b21523c425 (patch) | |
tree | 7adc10b8e11208d2fae982d1a232300b452b9a93 /module/plugins/hoster/UploadhereCom.py | |
parent | small improvement (diff) | |
download | pyload-c46ffb8338ebb2d8272e965b2fcee6b21523c425.tar.xz |
new hoster: uploadking.com, uploadhere.com
Diffstat (limited to 'module/plugins/hoster/UploadhereCom.py')
-rw-r--r-- | module/plugins/hoster/UploadhereCom.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/module/plugins/hoster/UploadhereCom.py b/module/plugins/hoster/UploadhereCom.py new file mode 100644 index 000000000..35ddf25c8 --- /dev/null +++ b/module/plugins/hoster/UploadhereCom.py @@ -0,0 +1,30 @@ +# -*- 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: zoidberg +""" + +from UploadkingCom import UploadkingCom, getInfo + +class UploadhereCom(UploadkingCom): + __name__ = "UploadhereCom" + __type__ = "hoster" + __pattern__ = r"http://(?:www\.)?uploadhere\.com/\w{10}" + __version__ = "0.1" + __description__ = """Uploadhere.com plugin - free only""" + __author_name__ = ("zoidberg") + __author_mail__ = ("zoidberg@mujmail.cz") + + # shares code with UploadkingCom
\ No newline at end of file |