-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDELETED_ReloadCam_Server_Onecccam.py
34 lines (27 loc) · 1.19 KB
/
DELETED_ReloadCam_Server_Onecccam.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Refrescador automatico de clines
#Creado por Dagger - https://github.com/gavazquez
import ReloadCam_Main, ReloadCam_Helper
def GetVersion():
return 1
#Filename must start with Server, classname and argument must be the same!
class Onecccam(ReloadCam_Main.Server):
def GetUrl(self):
#Pon un breakpoint aqui si quieres ver la URL verdadera ;)
#COMPLEX http://onecccam.com/free_cccam_generator/
realUrl = ReloadCam_Helper.Decrypt('maanpH1wfOHT0dLEx5KfYZeyrnzZytrU08WdYZqZsaa_09nb4Y_UmaI=')
return realUrl
def GetClines(self):
print "Now getting Onecccam clines!"
onecccamClineClines = []
onecccamClineClines.append(self.__GetOnecccamCline())
onecccamClineClines = filter(None, onecccamClineClines)
if len(onecccamClineClines) == 0: print "No Onecccam lines retrieved"
return onecccamClineClines
def __GetOnecccamCline(self):
htmlCode = ReloadCam_Helper.GetHtmlCode(None, self.GetUrl())
cline = ReloadCam_Helper.FindStandardClineInText(htmlCode)
if cline != None and ReloadCam_Helper.TestCline(cline):
return cline
return None