| Server IP : 172.67.134.114 / Your IP : 104.23.197.123 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/python2.7/site-packages/tld/ |
Upload File : |
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from typing import Type, Dict
__author__ = u'Artur Barseghyan'
__copyright__ = u'2013-2019 Artur Barseghyan'
__license__ = u'MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later'
__all__ = (u'Registry',)
class Registry(type):
REGISTRY = {
}
def __new__(cls, name, bases, attrs):
new_cls = type.__new__(cls, name, bases, attrs)
if getattr(new_cls, u'_uid', None):
cls.REGISTRY[new_cls._uid] = new_cls
return new_cls
@property
def _uid(cls):
return getattr(cls, 'uid', cls.__name__)
@classmethod
def reset(cls):
cls.REGISTRY = {
}
@classmethod
def get(cls, key, default=None):
return cls.REGISTRY.get(key, default)
@classmethod
def items(cls):
return cls.REGISTRY.items()