本文整理汇总了Python中module.plugins.internal.DeadHoster.create_getInfo函数的典型用法代码示例。如果您正苦于以下问题:Python create_getInfo函数的具体用法?Python create_getInfo怎么用?Python create_getInfo使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了create_getInfo函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: DdlstorageCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class DdlstorageCom(DeadHoster):
__name__ = "DdlstorageCom"
__type__ = "hoster"
__version__ = "1.05"
__status__ = "stable"
__pattern__ = r'https?://(?:www\.)?ddlstorage\.com/\w+'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """DDLStorage.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("zoidberg", "[email protected]"),
("stickell", "[email protected]")]
getInfo = create_getInfo(DdlstorageCom)
开发者ID:johny149,项目名称:openmediavault-pyload,代码行数:21,代码来源:DdlstorageCom.py
示例2: OronCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class OronCom(DeadHoster):
__name__ = "OronCom"
__type__ = "hoster"
__version__ = "0.15"
__status__ = "testing"
__pattern__ = r'https?://(?:www\.)?oron\.com/\w{12}'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Oron.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("chrox", "[email protected]"),
("DHMH", "[email protected]")]
getInfo = create_getInfo(OronCom)
开发者ID:earthGavinLee,项目名称:pyload,代码行数:21,代码来源:OronCom.py
示例3: ZShareNet
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class ZShareNet(DeadHoster):
__name__ = "ZShareNet"
__type__ = "hoster"
__version__ = "0.24"
__status__ = "stable"
__pattern__ = r'https?://(?:ww[2w]\.)?zshares?\.net/.+'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """ZShare.net hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("espes", None),
("Cptn Sandwich", None)]
getInfo = create_getInfo(ZShareNet)
开发者ID:johny149,项目名称:openmediavault-pyload,代码行数:21,代码来源:ZShareNet.py
示例4: FilesonicCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class FilesonicCom(DeadHoster):
__name__ = "FilesonicCom"
__type__ = "hoster"
__version__ = "0.38"
__status__ = "stable"
__pattern__ = r'http://(?:www\.)?filesonic\.com/file/\w+'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Filesonic.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("jeix", "[email protected]"),
("paulking", None)]
getInfo = create_getInfo(FilesonicCom)
开发者ID:johny149,项目名称:openmediavault-pyload,代码行数:21,代码来源:FilesonicCom.py
示例5: Share76Com
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class Share76Com(DeadHoster):
__name__ = "Share76Com"
__type__ = "hoster"
__version__ = "0.05"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?share76\.com/\w{12}'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Share76.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = []
getInfo = create_getInfo(Share76Com)
开发者ID:earthGavinLee,项目名称:pyload,代码行数:20,代码来源:Share76Com.py
示例6: StorageTo
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class StorageTo(DeadHoster):
__name__ = "StorageTo"
__type__ = "hoster"
__version__ = "0.04"
__status__ = "stable"
__pattern__ = r'http://(?:www\.)?storage\.to/get/.+'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Storage.to hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("mkaay", "[email protected]")]
getInfo = create_getInfo(StorageTo)
开发者ID:johny149,项目名称:openmediavault-pyload,代码行数:20,代码来源:StorageTo.py
示例7: BillionuploadsCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class BillionuploadsCom(DeadHoster):
__name__ = "BillionuploadsCom"
__type__ = "hoster"
__version__ = "0.07"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?billionuploads\.com/\w{12}'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Billionuploads.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("zoidberg", "[email protected]")]
getInfo = create_getInfo(BillionuploadsCom)
开发者ID:earthGavinLee,项目名称:pyload,代码行数:20,代码来源:BillionuploadsCom.py
示例8: X7To
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class X7To(DeadHoster):
__name__ = "X7To"
__type__ = "hoster"
__pattern__ = r'http://(?:www\.)?x7.to/'
__version__ = "0.41"
__description__ = """X7.to hoster plugin"""
__author_name__ = "ernieb"
__author_mail__ = "ernieb"
getInfo = create_getInfo(X7To)
开发者ID:3DMeny,项目名称:pyload,代码行数:16,代码来源:X7To.py
示例9: CloudzerNet
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class CloudzerNet(DeadHoster):
__name__ = "CloudzerNet"
__type__ = "hoster"
__version__ = "0.06"
__status__ = "testing"
__pattern__ = r'https?://(?:www\.)?(cloudzer\.net/file/|clz\.to/(file/)?)\w+'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Cloudzer.net hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("gs", "[email protected]"),
("z00nx", "[email protected]"),
("stickell", "[email protected]")]
getInfo = create_getInfo(CloudzerNet)
开发者ID:earthGavinLee,项目名称:pyload,代码行数:22,代码来源:CloudzerNet.py
示例10: FiredriveCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class FiredriveCom(DeadHoster):
__name__ = "FiredriveCom"
__type__ = "hoster"
__version__ = "0.05"
__pattern__ = r'https?://(?:www\.)?(firedrive|putlocker)\.com/(mobile/)?(file|embed)/(?P<ID>\w+)'
__description__ = """Firedrive.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("Walter Purcaro", "[email protected]")]
getInfo = create_getInfo(FiredriveCom)
开发者ID:kurtiss,项目名称:htpc,代码行数:18,代码来源:FiredriveCom.py
示例11: FileApeCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class FileApeCom(DeadHoster):
__name__ = "FileApeCom"
__type__ = "hoster"
__pattern__ = r"http://(?:www\.)?fileape\.com/(index\.php\?act=download\&id=|dl/)\w+"
__version__ = "0.12"
__description__ = """FileApe.com hoster plugin"""
__author_name__ = "espes"
__author_mail__ = ""
getInfo = create_getInfo(FileApeCom)
开发者ID:JeRiKo1,项目名称:pyload,代码行数:16,代码来源:FileApeCom.py
示例12: SharingmatrixCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class SharingmatrixCom(DeadHoster):
__name__ = "SharingmatrixCom"
__type__ = "hoster"
__version__ = "0.01"
__pattern__ = r'http://(?:www\.)?sharingmatrix\.com/file/\w+'
__description__ = """Sharingmatrix.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("jeix", "[email protected]"),
("paulking", None)]
getInfo = create_getInfo(SharingmatrixCom)
开发者ID:kurtiss,项目名称:htpc,代码行数:19,代码来源:SharingmatrixCom.py
示例13: UploadStationCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class UploadStationCom(DeadHoster):
__name__ = "UploadStationCom"
__type__ = "hoster"
__pattern__ = r'http://(?:www\.)?uploadstation\.com/file/(?P<id>[A-Za-z0-9]+)'
__version__ = "0.52"
__description__ = """UploadStation.com hoster plugin"""
__author_name__ = ("fragonib", "zoidberg")
__author_mail__ = ("fragonib[AT]yahoo[DOT]es", "[email protected]")
getInfo = create_getInfo(UploadStationCom)
开发者ID:3DMeny,项目名称:pyload,代码行数:16,代码来源:UploadStationCom.py
示例14: MegavideoCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class MegavideoCom(DeadHoster):
__name__ = "MegavideoCom"
__type__ = "hoster"
__version__ = "0.22"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?megavideo\.com/\?.*&?(d|v)=\w+'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Megavideo.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("jeix", "[email protected]"),
("mkaay", "[email protected]")]
getInfo = create_getInfo(MegavideoCom)
开发者ID:earthGavinLee,项目名称:pyload,代码行数:21,代码来源:MegavideoCom.py
示例15: IFileWs
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class IFileWs(DeadHoster):
__name__ = "IFileWs"
__type__ = "hoster"
__version__ = "0.05"
__status__ = "stable"
__pattern__ = r'http://(?:www\.)?ifile\.ws/\w{12}'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Ifile.ws hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("z00nx", "[email protected]")]
getInfo = create_getInfo(IFileWs)
开发者ID:johny149,项目名称:openmediavault-pyload,代码行数:20,代码来源:IFileWs.py
示例16: UploadhereCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class UploadhereCom(DeadHoster):
__name__ = "UploadhereCom"
__type__ = "hoster"
__version__ = "0.15"
__status__ = "stable"
__pattern__ = r'http://(?:www\.)?uploadhere\.com/\w{10}'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Uploadhere.com hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("zoidberg", "[email protected]")]
getInfo = create_getInfo(UploadhereCom)
开发者ID:johny149,项目名称:openmediavault-pyload,代码行数:20,代码来源:UploadhereCom.py
示例17: FilezyNet
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class FilezyNet(DeadHoster):
__name__ = "FilezyNet"
__type__ = "hoster"
__version__ = "0.21"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?filezy\.net/\w{12}'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Filezy.net hoster plugin"""
__license__ = "GPLv3"
__authors__ = []
getInfo = create_getInfo(FilezyNet)
开发者ID:earthGavinLee,项目名称:pyload,代码行数:20,代码来源:FilezyNet.py
示例18: ShareFilesCo
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class ShareFilesCo(DeadHoster):
__name__ = "ShareFilesCo"
__type__ = "hoster"
__version__ = "0.03"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?sharefiles\.co/\w{12}'
__config__ = [] #@TODO: Remove in 0.4.10
__description__ = """Sharefiles.co hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("stickell", "[email protected]")]
getInfo = create_getInfo(ShareFilesCo)
开发者ID:earthGavinLee,项目名称:pyload,代码行数:20,代码来源:ShareFilesCo.py
示例19: UploadkingCom
@author: zoidberg
"""
import re
from module.plugins.internal.DeadHoster import DeadHoster as SimpleHoster, create_getInfo
#from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class UploadkingCom(SimpleHoster):
__name__ = "UploadkingCom"
__type__ = "hoster"
__pattern__ = r"http://(?:www\.)?uploadking\.com/\w{10}"
__version__ = "0.14"
__description__ = """UploadKing.com plugin - free only"""
__author_name__ = ("zoidberg")
__author_mail__ = ("[email protected]")
FILE_NAME_PATTERN = r'<font style="font-size:\d*px;">File(?:name)?:\s*<(?:b|/font><font[^>]*)>(?P<N>[^<]+)'
FILE_SIZE_PATTERN = r'<font style="font-size:\d*px;">(?:Files|S)ize:\s*<(?:b|/font><font[^>]*)>(?P<S>[0-9.]+) (?P<U>[kKMG])i?B'
FILE_OFFLINE_PATTERN = r'<center><font[^>]*>Unfortunately, this file is unavailable</font></center>'
FILE_URL_PATTERN = r'id="dlbutton"><a href="([^"]+)"'
def handleFree(self):
found = re.search(self.FILE_URL_PATTERN, self.html)
if not found: self.fail("Download URL not found")
url = found.group(1)
self.logDebug("DOWNLOAD URL: " + url)
self.download(url)
create_getInfo(UploadkingCom)
开发者ID:beefone,项目名称:pyload,代码行数:29,代码来源:UploadkingCom.py
示例20: BoltsharingCom
# -*- coding: utf-8 -*-
from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
class BoltsharingCom(DeadHoster):
__name__ = "BoltsharingCom"
__type__ = "hoster"
__pattern__ = r"http://(?:\w*\.)*?boltsharing.com/\w{12}"
__version__ = "0.02"
__description__ = """Boltsharing.com hoster plugin"""
__author_name__ = ("zoidberg")
__author_mail__ = ("[email protected]")
getInfo = create_getInfo(BoltsharingCom)
开发者ID:BlackSmith,项目名称:pyload,代码行数:16,代码来源:BoltsharingCom.py
注:本文中的module.plugins.internal.DeadHoster.create_getInfo函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论