-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils.py
104 lines (78 loc) · 2.69 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
from __future__ import annotations
import base64
import importlib
import logging
from typing import Any, AnyStr, Union
FORMAT = "%(levelname)s:%(asctime)s:%(name)s:%(funcName)s:%(lineno)d >>> %(message)s"
DATE_FORMAT = "%Y-%m-%dT%H:%M:%SZ"
def import_module(name: Union[str, list[str]]):
modules = name if isinstance(name, list) else [name]
for module in modules:
if isinstance(module, str):
try:
module = importlib.import_module(module)
return module
except ImportError:
pass
chardet = import_module(["chardet", "charset_normalizer"])
orjson = import_module(["orjson"])
if orjson:
jsonlib = orjson
else:
import json
jsonlib = json
def get_logger(
name: str = "TLSRequests", level: int | str = logging.INFO
) -> logging.Logger:
logging.basicConfig(format=FORMAT, datefmt=DATE_FORMAT, level=level)
logger = logging.getLogger(name)
logger.setLevel(level)
return logger
def to_bytes(value: Any, encoding: str = "utf-8", *, lower: bool = False) -> bytes:
if isinstance(value, (bytes, bytearray)):
return value
return to_str(value, encoding).encode(encoding)
def to_str(
value: Any,
encoding: str = "utf-8",
*,
lower: bool = False,
) -> str:
if value is None:
return ""
value = value.decode(encoding) if isinstance(value, (bytes, bytearray)) else value
if isinstance(value, (dict, list, tuple, set)):
value = json_dumps(
value if isinstance(value, dict) else list[value],
**dict(
ensure_ascii=True if str(encoding).lower() == "ascii" else False,
default=str,
),
)
if isinstance(value, bool):
lower = True
if lower:
return str(value).lower()
return str(value)
def to_base64(value: Union[dict, str, bytes], encoding: str = "utf-8") -> AnyStr:
return base64.b64encode(to_bytes(value, encoding)).decode(encoding)
def b64decode(value: AnyStr) -> bytes:
return base64.b64decode(value)
def to_json(value: Union[str, bytes], encoding: str = "utf-8", **kwargs) -> dict:
if isinstance(value, dict):
return value
try:
json_data = jsonlib.loads(value, **kwargs)
return json_data
except jsonlib.JSONDecodeError:
raise jsonlib.JSONDecodeError
def json_dumps(value, **kwargs) -> str:
try:
if orjson:
kwargs = {"default": kwargs.pop("default", None)}
json_data = jsonlib.dumps(value, **kwargs)
if isinstance(json_data, bytes):
json_data = json_data.decode("utf-8")
return json_data
except jsonlib.JSONDecodeError:
raise jsonlib.JSONDecodeError