zoukankan      html  css  js  c++  java
  • 获取网络时间戳

    一、需求背景

    为了获取网络时间,采用python实现。

    二、代码

    # -*- coding: utf-8
    
    import sys
    import time
    import requests
    
    
    # 1、获取网络北京时间戳
    def get_beijing_stamp_from_web(url):
        # 请求网络数据
        response = requests.get(url)
        # 获取http头date部分
        ts = response.headers['date']
        # 将日期时间字符转化为数组对象
        gmt_time_obj = time.strptime(ts[5:25], "%d %b %Y %H:%M:%S")
        # 将时间数组对象转为时间戳
        gmt_ts = time.mktime(gmt_time_obj)  # 零时区时间戳
        # 将GMT时间转换成北京时间时间戳
        bj_internet_ts = int(gmt_ts + 8 * 3600)  # 北京时间戳
    
        # 返回东八区的北京时间戳
        return bj_internet_ts
    
    
    # 2、获取网络北京日期字串
    def get_beijing_date_from_web(url):
        # 请求网络数据
        response = requests.get(url)
        # 获取http头date部分
        ts = response.headers['date']
        # 将日期时间字符转化为数组对象
        gmt_time_obj = time.strptime(ts[5:25], "%d %b %Y %H:%M:%S")  # GMT零时区
        # 将时间数组对象转为时间戳
        gmt_ts = time.mktime(gmt_time_obj)  # 零时区时间戳
        # 将GMT时间转换成北京时间时间戳
        bj_internet_ts = gmt_ts + 8 * 3600  # 北京时间戳
        # 将北京时间戳转化为数组对象
        bj_local_time_obj = time.localtime(bj_internet_ts)
        # 构造日期字串
        str1 = "%u-%02u-%02u" % (bj_local_time_obj.tm_year,
                                 bj_local_time_obj.tm_mon, bj_local_time_obj.tm_mday)
        str2 = "%02u:%02u:%02u" % (
            bj_local_time_obj.tm_hour, bj_local_time_obj.tm_min, bj_local_time_obj.tm_sec)
        bj_date_time_str = "%s %s" % (str1, str2)  # 日期字串
    
        # 返回东八区的北京时间戳
        return bj_date_time_str
    
    
    # 3、获取网络GMT时间戳
    def get_gmt_stamp_from_web(url):
        # 请求网络数据
        response = requests.get(url)
        # 获取http头date部分
        ts = response.headers['date']
        # 将web日期时间字符转化为数组对象
        gmt_time = time.strptime(ts[5:25], "%d %b %Y %H:%M:%S")
        # 将数组对象时间转换成时间戳
        gmt_internet_ts = int(time.mktime(gmt_time)) # 零时区时间戳
        # 返回零时区时间戳
        return gmt_internet_ts
    
    
    # 4、获取网络GMT日期字串
    def get_gmt_date_from_web(url):
        # 请求网络数据
        response = requests.get(url)
        # 获取http头date部分
        ts = response.headers['date']
        # 将web日期时间字符转化为数组对象
        gmt_time_boj = time.strptime(ts[5:25], "%d %b %Y %H:%M:%S")
        # 构建时间字符串
        str1 = "%u-%02u-%02u" % (gmt_time_boj.tm_year,
                                 gmt_time_boj.tm_mon, gmt_time_boj.tm_mday)
        str2 = "%02u:%02u:%02u" % (
            gmt_time_boj.tm_hour, gmt_time_boj.tm_min, gmt_time_boj.tm_sec)
        gmt_date_time = "%s %s" % (str1, str2)
        # 返回零时区日期字串
        return gmt_date_time
    
    
    def main():
        url = 'http://www.baidu.com'
        x = get_beijing_stamp_from_web(url)
        print("北京时间戳:")
        print(x)
        x = get_beijing_date_from_web(url)
        print("北京日期串:")
        print(x)
        x = get_gmt_stamp_from_web(url)
        print("GMT时间戳:")
        print(x)
        x = get_gmt_date_from_web(url)
        print("GMT日期串:")
        print(x)
    
    
    if __name__ == '__main__':
        main()
    

      

    输出:

    北京时间戳:
    1619589692

    北京日期串:
    2021-04-28 14:01:32


    GMT时间戳:
    1619560892

    GMT日期串:
    2021-04-28 06:01:32

  • 相关阅读:
    solr 最佳实践
    DNS 域名解析过程
    mac 下 virtualbox 配置全网通
    搜索引擎使用技巧
    三叉搜索树
    双数组trie树的基本构造及简单优化
    基于回归-马尔科夫模型的客运量预测
    solr 常用命令
    PHP yield 分析,以及协程的实现,超详细版(上)
    C语言,简单计算器【上】
  • 原文地址:https://www.cnblogs.com/andy9468/p/14713832.html
Copyright © 2011-2022 走看看