我试图以编程方式为数据库创建一个添加约会槽,但是我发现date_start
和date_end
的值有些偏离。
我所做的是将工作日和周末时段存储在成对的元组数组中。元组包含一个小时和一个分钟值,这些值作为参数传递给内部appointments
函数,在其中对其进行解压缩并传递给datetime
构造函数。
有问题的函数是create_appointments
(特别是appointments
),该函数具有硬编码的时隙,并为每对调用create_appointment
。
import pytz
from django.db import models
from datetime import date, datetime
from project.settings import TIME_ZONE # 'America/Chicago'
class AppointmentManager(models.Manager):
def create_appointment(self, date_start, date_end):
from booking.models import Appointment
try:
appt = Appointment.objects.create(
profile=None,
date_start=date_start,
date_end=date_end,
)
except Exception as e:
return (False, e)
return (True, appt)
def create_appointments(self, date=date.today(), tzinfo=pytz.timezone(TIME_ZONE), verbose=False):
from booking.models import Appointment
def appointments(times):
for pair in times:
hour_start, minute_start = pair[0]
hour_end, minute_end = pair[1]
date_start = datetime(
date.year,
date.month,
date.day,
hour_start,
minute_start,
tzinfo=tzinfo,
)
date_end = datetime(
date.year,
date.month,
date.day,
hour_end,
minute_end,
tzinfo=tzinfo,
)
valid, response = self.create_appointment(date_start, date_end)
if not valid:
raise response
if verbose:
print('%s %s' % (response.date_start, response.date_end))
def weekend():
appointments([
[ (8, 0), (8, 50)], # 8am
[ (9, 0), (9, 50)], # 9am
[(10, 0), (10, 50)], # 10am
[(11, 0), (11, 50)], # 11am
[(13, 0), (13, 50)], # 1pm
[(14, 0), (14, 50)], # 2pm
[(15, 0), (15, 50)], # 3pm
[(17, 0), (17, 50)], # 5pm
[(18, 0), (18, 50)], # 6pm
[(19, 0), (19, 50)], # 7pm
])
def weekday():
appointments([
[(17, 0), (17, 50)], # 5pm
[(18, 0), (18, 50)], # 6pm
[(19, 0), (19, 50)], # 7pm
])
options = {
0: weekday,
1: weekday,
2: weekday,
3: weekday,
4: weekday,
5: weekend,
6: weekend,
}
try:
options[date.weekday()]()
except Exception as e:
return (False, e)
return (True, Appointment.objects.filter(
date_start__year=date.year,
date_start__month=date.month,
date_start__day=date.day,
))
在启用详细程度标志的情况下运行时,得到以下内容。
预期结果:
2019-06-15 08:00:00-05:00 2019-06-15 08:50:00-05:00
2019-06-15 09:00:00-05:00 2019-06-15 09:50:00-05:00
2019-06-15 10:00:00-05:00 2019-06-15 10:50:00-05:00
…
2019-06-21 17:00:00-05:00 2019-06-21 17:50:00-05:00
2019-06-21 18:00:00-05:00 2019-06-21 18:50:00-05:00
2019-06-21 19:00:00-05:00 2019-06-21 19:50:00-05:00
实际结果:
2019-06-15 08:00:00-05:51 2019-06-15 08:50:00-05:51
2019-06-15 09:00:00-05:51 2019-06-15 09:50:00-05:51
2019-06-15 10:00:00-05:51 2019-06-15 10:50:00-05:51
…
2019-06-21 17:00:00-05:51 2019-06-21 17:50:00-05:51
2019-06-21 18:00:00-05:51 2019-06-21 18:50:00-05:51
2019-06-21 19:00:00-05:51 2019-06-21 19:50:00-05:51
因此,基准时间是正确的,但时区偏移量却不正确。为什么我反复得到这个假值?
我正在使用SQLite进行开发,并计划使用PostgreSQL进行生产。
答案 0 :(得分:2)
>>> pytz.timezone("America/Chicago")
<DstTzInfo 'America/Chicago' LMT-1 day, 18:09:00 STD>
>>> offset = 24*3600 - 18*3600 - 9*60
>>> (offset//3600, offset//60%60)
(5, 51)
使用pytz.timezone设置tzinfo将使用我们今天使用的旧时区系统,.localize
似乎可以解决此问题,应改为使用。
>>> # pytz.timezone(...).localize(datetime(...))
>>> pytz.timezone("America/Chicago").localize(datetime.datetime(2019, 6, 15, 17, 00)).isoformat(" ")
'2019-06-15 17:00:00-05:00'
代替
>>> # datetime(..., tzinfo=pytz.timezone(...))
>>> datetime.datetime(2019, 6, 15, 17, 00, tzinfo=pytz.timezone("America/Chicago")).isoformat(" ")
'2019-06-15 17:00:00-05:51'
编辑:顺便说一下,不要将对象实例用作默认参数,例如date=date.today()
date.today(),并且将重新使用结果对象。 如果脚本要运行一天以上,它仍将使用前一天的日期。请改用以下构造。
def create_appointments(self, date=None, tzinfo=pytz.timezone(TIME_ZONE), verbose=False):
if date is None:
date = date.today()
...