當前位置: 首頁>>代碼示例>>Python>>正文


Python compat.UTC屬性代碼示例

本文整理匯總了Python中nltk.compat.UTC屬性的典型用法代碼示例。如果您正苦於以下問題:Python compat.UTC屬性的具體用法?Python compat.UTC怎麽用?Python compat.UTC使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在nltk.compat的用法示例。


在下文中一共展示了compat.UTC屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: check_date_limit

# 需要導入模塊: from nltk import compat [as 別名]
# 或者: from nltk.compat import UTC [as 別名]
def check_date_limit(self, data, verbose=False):
        """
        Validate date limits.
        """
        if self.upper_date_limit or self.lower_date_limit:
            date_fmt = '%a %b %d %H:%M:%S +0000 %Y'
            tweet_date = \
                datetime.strptime(data['created_at'],
                                  date_fmt).replace(tzinfo=UTC)
            if (self.upper_date_limit and tweet_date > self.upper_date_limit) or \
               (self.lower_date_limit and tweet_date < self.lower_date_limit):
                if self.upper_date_limit:
                    message = "earlier"
                    date_limit = self.upper_date_limit
                else:
                    message = "later"
                    date_limit = self.lower_date_limit
                if verbose:
                    print("Date limit {0} is {1} than date of current tweet {2}".\
                      format(date_limit, message, tweet_date))
                self.do_stop = True 
開發者ID:Thejas-1,項目名稱:Price-Comparator,代碼行數:23,代碼來源:api.py


注:本文中的nltk.compat.UTC屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。