This repository was archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
62 lines (51 loc) · 1.82 KB
/
main.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
from datetime import datetime
from typing import Any
def black_style_pretty_print(data: Any, indent: int = 4, level: int = 0):
"""
Pretty print Python objects in a style similar to Black.
Args:
data (Any): The object to be pretty-printed.
indent (int): Number of spaces for indentation.
level (int): Current indentation level (used internally for recursion).
Returns:
None
"""
space = " " * indent
current_indent = space * level
next_indent = space * (level + 1)
if isinstance(data, dict):
print("{")
for i, (key, value) in enumerate(data.items()):
comma = "," if i < len(data) - 1 else ""
print(f"{next_indent}\"{key}\": ", end="")
black_style_pretty_print(value, indent, level + 1)
print(f"{comma}")
print(f"{current_indent}}}", end="")
elif isinstance(data, list):
print("[")
for i, item in enumerate(data):
comma = "," if i < len(data) - 1 else ""
print(next_indent, end="")
black_style_pretty_print(item, indent, level + 1)
print(f"{comma}")
print(f"{current_indent}]", end="")
elif isinstance(data, datetime):
print(f"datetime.datetime({data.year}, {data.month}, {data.day}, {data.hour}, {data.minute})", end="")
elif isinstance(data, str):
print(f'"{data}"', end="")
else:
print(data, end="")
# Example usage
data = {
"a": [
{"123": datetime(2021, 11, 15, 0, 0),
"456": "cillum dolore eu fugiat nulla pariatur. Excepteur sint...",
"567": [
1,
2,
"cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", ],
}
],
"b": {"x": "yz"},
}
black_style_pretty_print(data)