404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.116.12.252: ~ $
from datetime import tzinfo, timedelta


class TomlTz(tzinfo):
    def __init__(self, toml_offset):
        if toml_offset == "Z":
            self._raw_offset = "+00:00"
        else:
            self._raw_offset = toml_offset
        self._sign = -1 if self._raw_offset[0] == '-' else 1
        self._hours = int(self._raw_offset[1:3])
        self._minutes = int(self._raw_offset[4:6])

    def tzname(self, dt):
        return "UTC" + self._raw_offset

    def utcoffset(self, dt):
        return self._sign * timedelta(hours=self._hours, minutes=self._minutes)

    def dst(self, dt):
        return timedelta(0)

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 2755
__init__.py File 747 B 0644
common.py File 242 B 0644
decoder.py File 37.79 KB 0644
encoder.py File 9.72 KB 0644
ordered.py File 378 B 0644
tz.py File 618 B 0644