diff --git a/toJson.py b/toJson.py deleted file mode 100644 index 811e6cd..0000000 --- a/toJson.py +++ /dev/null @@ -1,18 +0,0 @@ -import json -from typing import Any - -class User: - name = "cwx" - value = "val" - -class MyJsonEncoder(json.JSONEncoder): - def default(self, o: Any) -> Any: - if isinstance(o,User): - return { - "name": o.name, - "value": o.value - } - return super().default(o) - -s = json.dumps(User(),cls=MyJsonEncoder,ensure_ascii=False) -print(s) \ No newline at end of file