Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > > toml
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 723 bytes | April 17 2025 13:10:58. | |
decoder.py | File | 38942 bytes | April 17 2025 13:10:58. | |
encoder.py | File | 9940 bytes | April 17 2025 13:10:58. | |
ordered.py | File | 354 bytes | April 17 2025 13:10:58. | |
tz.py | File | 701 bytes | April 17 2025 13:10:58. |
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 __deepcopy__(self, memo): return self.__class__(self._raw_offset) 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)
SILENT KILLER Tool