当前位置: 首页>>代码示例>>Python>>正文


Python Configuration.numberOfWebSites方法代码示例

本文整理汇总了Python中Configuration.Configuration.numberOfWebSites方法的典型用法代码示例。如果您正苦于以下问题:Python Configuration.numberOfWebSites方法的具体用法?Python Configuration.numberOfWebSites怎么用?Python Configuration.numberOfWebSites使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Configuration.Configuration的用法示例。


在下文中一共展示了Configuration.numberOfWebSites方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from Configuration import Configuration [as 别名]
# 或者: from Configuration.Configuration import numberOfWebSites [as 别名]
class HTTPClass:

    def __init__(self, xmlFileName = "config.xml"):
        """ Initializes the Cofiguration class """
        self.conf = Configuration(xmlFileName) #create the configuration object

    def getResponses(self):
        """ get all the response object attributes in a suitable structure """
        propertyList = []
        url_content = self.conf.MapUrlToContent()

        for url, content in url_content:
            start_time = time.time()
            #create a Response object //remove all the required attributes to be logged

            try:
                res = requests.get(url)     #make a get request to know status code
                final_time = time.time()
                real_time = final_time - start_time #duration of request
                #get Http response status
                resStatus = self.__getResponseStatus(res)
                output = resStatus,real_time, url , content, self.__getCurrentTime() #response object, duration, url, content, current time 
                propertyList.append(output)
            except ValueError:
                print "This Url is not valid: ", url
            except ConnectionError: 
                print "DNS failure, refused connection"
            except HTTPError:
                print "Invalid HTTP response"  
            except TooManyRedirects:
                print "Exceeds the configured number of maximum redirections"

        return propertyList

    def __getCurrentTime(self): #make method private
        return str(datetime.now())

    def __getResponseStatus(self, res):
        """ This gets the status """
        status = None 
        if res.status_code == requests.codes.ok:
            status = "Success"

        if res.status_code == 404:
            #Not Found
            status = "Not Found"
        if res.status_code == 408:
            #Request Timeout
            status = "Request Timeout"
        if res.status_code == 410:
            #Gone no longer in server
            status = "Not ON Server"

        if res.status_code == 503:
            #Website is temporary unavailable for maintenance
            status = "Temporary Unavailable"
        if res.status_code == 505:
            #HTTP version not supported
            status = "HTTP version not supported"

        return status

    def getCheckingPeriod(self):
        return self.conf.getCheckingPeriod()

    def numberOfWebSites(self):
        return self.conf.numberOfWebSites()

    def __getPageTitleFromUrl(self, url):
        """let us the title text as the content for comparison. This because it is less updated. We need a variable that is not always changed when making comparisons."""
        t = lxml.html.parse(url)
        return t.find(".//title").text


    def checkedContent(self):
        """url , content variable is the second and third index respectively in the response object tuple
           Append a true or false to specify if a match is found or not
           This is a more complete structure of the response object that can be saved in the database in one pass
        """
        outputList = []
        responseList = self.getResponses()
        for responseObj in responseList:
            #print responseObj #tuple
            url =  responseObj[2] ; content = responseObj[3]
            webContent = self.__getPageTitleFromUrl(url)  #get web page using the Url
            #compare the content of the web page to the content save in the configuration file
            #convert response object to list
            responseList = list(responseObj)
            if self.__processString(webContent) == self.__processString(content) :
                # A match is found
                responseList.append(True)
            else:
                #A match is not found
                responseList.append(False)
            outputList.append(responseList)
        return outputList



    def __processString(self,text):
#.........这里部分代码省略.........
开发者ID:huzichunjohn,项目名称:PyCon2012_Talk,代码行数:103,代码来源:HTTPClass.py


注:本文中的Configuration.Configuration.numberOfWebSites方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。