Buckets:
| # -*- coding: utf-8 -*- | |
| import sys | |
| try: | |
| from ._version import version as __version__ | |
| except ImportError: | |
| __version__ = 'unknown' | |
| __all__ = ['easter', 'parser', 'relativedelta', 'rrule', 'tz', | |
| 'utils', 'zoneinfo'] | |
| def __getattr__(name): | |
| import importlib | |
| if name in __all__: | |
| return importlib.import_module("." + name, __name__) | |
| raise AttributeError( | |
| "module {!r} has not attribute {!r}".format(__name__, name) | |
| ) | |
| def __dir__(): | |
| # __dir__ should include all the lazy-importable modules as well. | |
| return [x for x in globals() if x not in sys.modules] + __all__ | |
Xet Storage Details
- Size:
- 620 Bytes
- Xet hash:
- 6a6459164fc94fc32520c081b1ae78aa89bfa8692744b0809856e56c4b13e30c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.