"""ACME utilities.""" from typing import Any from typing import Callable from typing import Dict from typing import Mapping def map_keys(dikt: Mapping[Any, Any], func: Callable[[Any], Any]) -> Dict[Any, Any]: """Map dictionary keys.""" return {func(key): value for key, value in dikt.items()}
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
__init__.py | File | 726 B | 0644 |
|
challenges.py | File | 21.19 KB | 0644 |
|
client.py | File | 52.86 KB | 0644 |
|
crypto_util.py | File | 16.34 KB | 0644 |
|
errors.py | File | 4.21 KB | 0644 |
|
fields.py | File | 1.84 KB | 0644 |
|
jws.py | File | 2.33 KB | 0644 |
|
magic_typing.py | File | 595 B | 0644 |
|
messages.py | File | 24.74 KB | 0644 |
|
mixins.py | File | 2.78 KB | 0644 |
|
standalone.py | File | 12.83 KB | 0644 |
|
util.py | File | 303 B | 0644 |
|