Maria Santos
Backend Developer
关于
Maria is a backend developer specialising in Python and API integration. She has broad experience with data pipelines, serialisation formats, and building reliable server-side services. She is an active member of the Python community and enjoys writing practical, example-driven guides that help developers solve real problems without unnecessary theory.
Maria Santos 的文章
使用 json.dumps(indent=4) 在 Python 中格式化 JSON。涵盖 pprint、orjson、sort_keys、ensure_ascii、json.tool CLI、自定义类型和大文件流式处理。Python 3.8+ 代码示例。
使用 Python base64.b64decode() 解码 Base64。涵盖 URL-safe 解码、padding 修复、文件处理、HTTP 响应及常见错误。Python 3.8+ 代码示例。
深入讲解 Python base64 模块:b64encode、urlsafe_b64encode 与 encodebytes 的区别,JWT 编码,大文件分块处理,以及最常见的四个错误及修复方法。
Python uuid.uuid4()生成UUID v4。涵盖UUID属性、JSON序列化、Pydantic和uuid-utils。Python 3.8+。
Python JSON 转 CSV,用 csv.DictWriter 和 pandas。含嵌套 JSON、ijson 流式、CLI 命令及常见错误。