Compare commits

..

No commits in common. "df2b5efd889853accee7abc3d032b73056f7ff14" and "ad70648ea217e0231c267341c3082565f5838567" have entirely different histories.

2 changed files with 23 additions and 25 deletions

View File

@ -20,7 +20,7 @@ def config_get(key: str, *path: str, config_file: str | Path = DEFAULT_CONFIG_LO
### Args: ### Args:
* key (`str`): Key that contains the value * key (`str`): Key that contains the value
* *path (`str`): Path to the key that contains the value (pass *[] or don't pass anything at all to get on the top/root level) * *path (`str`): Path to the key that contains the value
* config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"` * config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"`
### Returns: ### Returns:
@ -59,7 +59,7 @@ async def config_get(key: str, *path: str, config_file: str | Path = DEFAULT_CON
### Args: ### Args:
* key (`str`): Key that contains the value * key (`str`): Key that contains the value
* *path (`str`): Path to the key that contains the value (pass *[] or don't pass anything at all to get on the top/root level) * *path (`str`): Path to the key that contains the value
* config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"` * config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"`
### Returns: ### Returns:
@ -98,7 +98,7 @@ def config_set(key: str, value: Any, *path: str, config_file: str | Path = DEFAU
### Args: ### Args:
* key (`str`): Key that leads to the value * key (`str`): Key that leads to the value
* value (`Any`): Any JSON serializable data * value (`Any`): Any JSON serializable data
* *path (`str`): Path to the key of the target (pass *[] or don't pass anything at all to set on the top/root level) * *path (`str`): Path to the key of the target
* config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"` * config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"`
### Raises: ### Raises:
@ -116,7 +116,7 @@ async def config_set(
### Args: ### Args:
* key (`str`): Key that leads to the value * key (`str`): Key that leads to the value
* value (`Any`): Any JSON serializable data * value (`Any`): Any JSON serializable data
* *path (`str`): Path to the key of the target (pass *[] or don't pass anything at all to set on the top/root level) * *path (`str`): Path to the key of the target
* config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"` * config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"`
### Raises: ### Raises:
@ -136,7 +136,7 @@ def config_delete(
### Args: ### Args:
* key (`str`): Key to delete * key (`str`): Key to delete
* *path (`str`): Path to the key of the target (pass *[] or don't pass anything at all to delete on the top/root level) * *path (`str`): Path to the key of the target
* missing_ok (`bool`): Do not raise an exception if the key is missing. Defaults to `False` * missing_ok (`bool`): Do not raise an exception if the key is missing. Defaults to `False`
* config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"` * config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"`
@ -165,7 +165,7 @@ async def config_delete(
### Args: ### Args:
* key (`str`): Key to delete * key (`str`): Key to delete
* *path (`str`): Path to the key of the target (pass *[] or don't pass anything at all to delete on the top/root level) * *path (`str`): Path to the key of the target
* missing_ok (`bool`): Do not raise an exception if the key is missing. Defaults to `False` * missing_ok (`bool`): Do not raise an exception if the key is missing. Defaults to `False`
* config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"` * config_file (`str | Path`, *optional*): Path-like object or path as a string of a location of the config file. Defaults to `"config.json"`

View File

@ -3,11 +3,11 @@ from typing import Any, Dict
from typing import Callable from typing import Callable
def supports_argument(func: Callable[..., Any], arg_name: str) -> bool: def supports_argument(func: Callable, arg_name: str) -> bool:
"""Check whether a function has a specific argument """Check whether a function has a specific argument
### Args: ### Args:
* func (`Callable[..., Any]`): Function to be inspected * func (`Callable`): Function to be inspected
* arg_name (`str`): Argument to be checked * arg_name (`str`): Argument to be checked
### Returns: ### Returns:
@ -24,13 +24,11 @@ def supports_argument(func: Callable[..., Any], arg_name: str) -> bool:
return False return False
def nested_set( def nested_set(target: dict, value: Any, *path: str, create_missing=True) -> Dict[str, Any]:
target: Dict[str, Any], value: Any, *path: str, create_missing: bool = True
) -> Dict[str, Any]:
"""Set the key by its path to the value """Set the key by its path to the value
### Args: ### Args:
* target (`Dict[str, Any]`): Dictionary to perform modifications on * target (`dict`): Dictionary to perform modifications on
* value (`Any`): Any data * value (`Any`): Any data
* *path (`str`): Path to the key of the target * *path (`str`): Path to the key of the target
* create_missing (`bool`, *optional*): Create keys on the way if they're missing. Defaults to `True` * create_missing (`bool`, *optional*): Create keys on the way if they're missing. Defaults to `True`
@ -41,29 +39,29 @@ def nested_set(
### Returns: ### Returns:
* `Dict[str, Any]`: Changed dictionary * `Dict[str, Any]`: Changed dictionary
""" """
target_copy: Dict[str, Any] = target d = target
for key in path[:-1]: for key in path[:-1]:
if key in target_copy: if key in d:
target_copy = target_copy[key] d = d[key]
elif create_missing: elif create_missing:
target_copy = target_copy.setdefault(key, {}) d = d.setdefault(key, {})
else: else:
raise KeyError( raise KeyError(
f"Key '{key}' is not found under path provided ({path}) and create_missing is False" f"Key '{key}' is not found under path provided ({path}) and create_missing is False"
) )
if path[-1] in target_copy or create_missing: if path[-1] in d or create_missing:
target_copy[path[-1]] = value d[path[-1]] = value
return target return target
def nested_delete(target: Dict[str, Any], *path: str) -> Dict[str, Any]: def nested_delete(target: dict, *path: str) -> Dict[str, Any]:
"""Delete the key by its path """Delete the key by its path
### Args: ### Args:
* target (`Dict[str, Any]`): Dictionary to perform modifications on * target (`dict`): Dictionary to perform modifications on
### Raises: ### Raises:
* `KeyError`: Key is not found under path provided * `KeyError`: Key is not found under path provided
@ -71,16 +69,16 @@ def nested_delete(target: Dict[str, Any], *path: str) -> Dict[str, Any]:
### Returns: ### Returns:
`Dict[str, Any]`: Changed dictionary `Dict[str, Any]`: Changed dictionary
""" """
target_copy: Dict[str, Any] = target d = target
for key in path[:-1]: for key in path[:-1]:
if key in target_copy: if key in d:
target_copy = target_copy[key] d = d[key]
else: else:
raise KeyError(f"Key '{key}' is not found under path provided ({path})") raise KeyError(f"Key '{key}' is not found under path provided ({path})")
if path[-1] in target_copy: if path[-1] in d:
del target_copy[path[-1]] del d[path[-1]]
else: else:
raise KeyError(f"Key '{path[-1]}' is not found under path provided ({path})") raise KeyError(f"Key '{path[-1]}' is not found under path provided ({path})")