Skip to content

Instantly share code, notes, and snippets.

@kkAyataka
kkAyataka / timezone_conv.py
Last active May 8, 2021 19:57
Python timezone conversion
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""timezoneの変換"""
import datetime
class UTC(datetime.tzinfo):
def utcoffset(self, dt):
return datetime.timedelta()