summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/XVideosCom.py
diff options
context:
space:
mode:
authorGravatar Christopher <4Christopher@gmx.de> 2013-04-13 21:06:34 +0200
committerGravatar Christopher <4Christopher@gmx.de> 2013-04-13 21:06:34 +0200
commit0b2e9ddcafed94fb780ea8d07ea23f6f14612830 (patch)
tree36f60fb82cc61cf17947cbe7dcbbc719994e234c /module/plugins/hoster/XVideosCom.py
parentCleanup. (diff)
parentMBLinkInfo: updated pattern (diff)
downloadpyload-0b2e9ddcafed94fb780ea8d07ea23f6f14612830.tar.xz
Merge branch 'stable' of git://github.com/pyload/pyload into stable
Diffstat (limited to 'module/plugins/hoster/XVideosCom.py')
-rw-r--r--module/plugins/hoster/XVideosCom.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/module/plugins/hoster/XVideosCom.py b/module/plugins/hoster/XVideosCom.py
new file mode 100644
index 000000000..b7f3f7b58
--- /dev/null
+++ b/module/plugins/hoster/XVideosCom.py
@@ -0,0 +1,19 @@
+
+import re
+import urllib
+
+from module.plugins.Hoster import Hoster
+
+class XVideosCom(Hoster):
+ __name__ = "XVideos.com"
+ __version__ = "0.1"
+ __pattern__ = r"http://www\.xvideos\.com/video([0-9]+)/.*"
+ __config__ = []
+
+ def process(self, pyfile):
+ site = self.load(pyfile.url)
+ pyfile.name = "%s (%s).flv" %(
+ re.search(r"<h2>([^<]+)<span", site).group(1),
+ re.search(self.__pattern__, pyfile.url).group(1),
+ )
+ self.download(urllib.unquote(re.search(r"flv_url=([^&]+)&", site).group(1)))