导航

2016年5月18日

摘要: from pytz import timezone def datetime_as_timezone(date_time, time_zone): tz = timezone(time_zone) utc = timezone('UTC') return date_time.replace(tzin 阅读全文

posted @ 2016-05-18 13:22 网名还没想好 阅读(375) 评论(0) 推荐(0) 编辑

摘要: http://www.dannysite.com/blog/122/ Python标准库中的datetime模块提供了各种对日期和时间的处理方法。从本文的主题着手,首先利用datetime中提供的utcnow()方法获取到当前UTC时间: 1 2 3 4 >>> import datetime >> 阅读全文

posted @ 2016-05-18 13:03 网名还没想好 阅读(977) 评论(0) 推荐(0) 编辑

摘要: Django下载中文名文件: from django.utils.http import urlquote from django.http import HttpResponse content = export.export_to_xls() response = HttpResponse()r 阅读全文

posted @ 2016-05-18 10:52 网名还没想好 阅读(1108) 评论(0) 推荐(0) 编辑

摘要: http://stackoverflow.com/questions/972/adding-a-method-to-an-existing-object-instance 532down voteaccepted +50 +50 In Python, there is a difference be 阅读全文

posted @ 2016-05-18 10:39 网名还没想好 阅读(208) 评论(0) 推荐(0) 编辑