from . import interfaces from . import storage class Factory(interfaces.Factory): __slots__ = ["_storage_provider"] def __init__(self, storage_provider): self._storage_provider = storage_provider @property def provider(self): return self._storage_provider def create(self, namespace): return storage.Storage(self._storage_provider, namespace)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
.__init__.pyo.40009 | File | 361 B | 0644 |
|
.factory.pyo.40009 | File | 1.05 KB | 0644 |
|
.interfaces.pyo.40009 | File | 1.82 KB | 0644 |
|
.pickle_provider.pyo.40009 | File | 2.86 KB | 0644 |
|
.storage.pyo.40009 | File | 1.25 KB | 0644 |
|
__init__.py | File | 141 B | 0644 |
|
__init__.pyc | File | 361 B | 0644 |
|
__init__.pyo | File | 361 B | 0644 |
|
factory.py | File | 358 B | 0644 |
|
factory.pyc | File | 1.05 KB | 0644 |
|
factory.pyo | File | 1.05 KB | 0644 |
|
interfaces.py | File | 473 B | 0644 |
|
interfaces.pyc | File | 1.82 KB | 0644 |
|
interfaces.pyo | File | 1.82 KB | 0644 |
|
pickle_provider.py | File | 1.38 KB | 0644 |
|
pickle_provider.pyc | File | 2.86 KB | 0644 |
|
pickle_provider.pyo | File | 2.86 KB | 0644 |
|
storage.py | File | 482 B | 0644 |
|
storage.pyc | File | 1.25 KB | 0644 |
|
storage.pyo | File | 1.25 KB | 0644 |
|