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


Python DateUtils.get_datetime_local方法代碼示例

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


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

示例1: test_to_datetime

# 需要導入模塊: from wikilife_utils.date_utils import DateUtils [as 別名]
# 或者: from wikilife_utils.date_utils.DateUtils import get_datetime_local [as 別名]
    def test_to_datetime(self):
        tz_name = "US/Central" 
        dt = DateUtils.get_datetime_local(tz_name)
        expected_str_value = "%s-%02d-%02d %02d:%02d:%02d %s" %(dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second, DateUtils.get_utc_offset_str(tz_name))
        str_value = DateFormatter.to_datetime(dt)

        print expected_str_value
        print str_value

        assert str_value != None
        assert str_value == expected_str_value
開發者ID:wikilife-org,項目名稱:wikilife_utils,代碼行數:13,代碼來源:date_formatter_tests.py

示例2: test_get_datetime_local

# 需要導入模塊: from wikilife_utils.date_utils import DateUtils [as 別名]
# 或者: from wikilife_utils.date_utils.DateUtils import get_datetime_local [as 別名]
    def test_get_datetime_local(self):
        tz_name = "US/Central"

        utc_dt = DateUtils.get_datetime_utc()
        local_dt = DateUtils.get_datetime_local(tz_name)

        #assert local_dt.hour+5 == utc_dt.hour
        assert local_dt.year == utc_dt.year
        assert local_dt.month == utc_dt.month
        assert local_dt.day == utc_dt.day
        assert local_dt.minute == utc_dt.minute
        assert local_dt.second == utc_dt.second
開發者ID:wikilife-org,項目名稱:wikilife_utils,代碼行數:14,代碼來源:date_utils_tests.py

示例3: _add_single_log

# 需要導入模塊: from wikilife_utils.date_utils import DateUtils [as 別名]
# 或者: from wikilife_utils.date_utils.DateUtils import get_datetime_local [as 別名]
    def _add_single_log(self):
        root_slug = "exercise"
        nodes = [{"node_id": 298, "value": "60"}]
        current_date_local = DateUtils.get_datetime_local("America/Argentina/Buenos_Aires")
        execute_time = DateFormatter.to_datetime(current_date_local)

        #create test log
        logs = []
        log = self._get_sample_log(TEST_USER_ID, root_slug, nodes, execute_time)
        logs.append(log)

        body = JSONParser.to_json(logs)
        raw_response = self.rest_post("http://localhost:7080/2/logs/add", body)
        print raw_response
        response = JSONParser.to_collection(raw_response)

        added_log_id = response["data"][0]
        return added_log_id, execute_time
開發者ID:wikilife-org,項目名稱:wikilife_ws,代碼行數:20,代碼來源:logs_edit_tests.py


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