Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

python-json-parsingPython JSON parsing 搜索

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

261

周安装

11

GitHub Stars

18

下载量

92
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:python-json-parsing(Python JSON parsing 搜索)
来源仓库:https://github.com/basher83/lunar-claude
仓库路径:skills/python-json-parsing
安装命令:
npx skills add https://github.com/basher83/lunar-claude --skill python-json-parsing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/basher83/lunar-claude --skill python-json-parsing

简介

优化 Python 中 JSON 数据的解析与序列化效率。

  • 处理嵌套结构与特殊数据类型转换问题。python-json-parsing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 提供 ujson、orjson 等高性能库使用示例。
  • 大数据量场景建议采用流式解析减少内存占用。
  • 反序列化时务必校验字段类型防止注入攻击。

SKILL.md

Python JSON Parsing Best Practices

Comprehensive guide to JSON parsing in Python with focus on performance, security, and scalability.

Quick Start

Basic JSON Parsing

import json

# Parse JSON string
data = json.loads('{"name": "Alice", "age": 30}')

# Parse JSON file
with open("data.json", "r", encoding="utf-8") as f:
    data = json.load(f)

# Write JSON file
with open("output.json", "w", encoding="utf-8") as f:
    json.dump(data, f, indent=2)

Key Rule: Always specify encoding="utf-8" when reading/writing files.

When to Use This Skill

Use this skill when:

  • Working with JSON APIs or data interchange
  • Optimizing JSON performance in high-throughput applications
  • Handling large JSON files (> 100MB)
  • Securing applications against JSON injection
  • Extracting data from complex nested JSON structures

Performance: Choose the Right Library

Library Comparison (10,000 records benchmark)

LibrarySerialize (s)Deserialize (s)Best For
orjson0.421.27FastAPI, web APIs (3.9x faster)
msgspec0.490.93Maximum performance (1.7x faster deserialization)
json (stdlib)1.621.62Universal compatibility
ujson1.411.85Drop-in replacement (2x faster)

Recommendation:

  • Use orjson for FastAPI/web APIs (native support, fastest serialization)
  • Use msgspec for data pipelines (fastest overall, typed validation)
  • Use json when compatibility is critical

Installation

# High-performance libraries
pip install orjson msgspec ujson

# Advanced querying
pip install jsonpath-ng jmespath

# Streaming large files
pip install ijson

# Schema validation
pip install jsonschema

Large Files: Streaming Strategies

For files > 100MB, avoid loading into memory.

Strategy 1: JSONL (JSON Lines)

Convert large JSON arrays to line-delimited format:

# Stream process JSONL
with open("large.jsonl", "r") as infile, open("output.jsonl", "w") as outfile:
    for line in infile:
        obj = json.loads(line)
        obj["processed"] = True
        outfile.write(json.dumps(obj) + "\n")

Strategy 2: Streaming with ijson

import ijson

# Process large JSON without loading into memory
with open("huge.json", "rb") as f:
    for item in ijson.items(f, "products.item"):
        process(item)  # Handle one item at a time

See: patterns/streaming-large-json.md

Security: Prevent JSON Injection

Critical Rules:

  1. Always use json.loads(), never eval()
  2. Validate input with jsonschema
  3. Sanitize user input before serialization
  4. Escape special characters (" and \)

Vulnerable Code:

# NEVER DO THIS
username = request.GET['username']  # User input: admin", "role": "admin
json_string = f'{{"user":"{username}","role":"user"}}'
# Result: privilege escalation

Secure Code:

# Use json.dumps for serialization
data = {"user": username, "role": "user"}
json_string = json.dumps(data)  # Properly escaped

See: anti-patterns/security-json-injection.md, anti-patterns/eval-usage.md

Advanced: JSONPath for Complex Queries

Extract data from nested JSON without complex loops:

import jsonpath_ng as jp

data = {
    "products": [
        {"name": "Apple", "price": 12.88},
        {"name": "Peach", "price": 27.25}
    ]
}

# Filter by price
query = jp.parse("products[?price>20].name")
results = [match.value for match in query.find(data)]
# Output: ["Peach"]

Key Operators:

  • $ - Root selector
  • .. - Recursive descendant
  • * - Wildcard
  • [?<predicate>] - Filter (e.g., [?price > 20])
  • [start:end:step] - Array slicing

See: patterns/jsonpath-querying.md

Custom Objects: Serialization

Handle datetime, UUID, Decimal, and custom classes:

from datetime import datetime
import json

class CustomEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, datetime):
            return obj.isoformat()
        if isinstance(obj, set):
            return list(obj)
        return super().default(obj)

# Usage
data = {"timestamp": datetime.now(), "tags": {"python", "json"}}
json_str = json.dumps(data, cls=CustomEncoder)

See: patterns/custom-object-serialization.md

Performance Checklist

  • Use orjson/msgspec for high-throughput applications
  • Specify UTF-8 encoding when reading/writing files
  • Use streaming (ijson/JSONL) for files > 100MB
  • Minify JSON for production (separators=(',', ':'))
  • Pretty-print for development (indent=2)

Security Checklist

  • Never use eval() for JSON parsing
  • Validate input with jsonschema
  • Sanitize user input before serialization
  • Use json.dumps() to prevent injection
  • Escape special characters in user data

Reference Documentation

Performance:

  • reference/python-json-parsing-best-practices-2025.md - Comprehensive research with benchmarks

Patterns:

  • patterns/streaming-large-json.md - ijson and JSONL strategies
  • patterns/custom-object-serialization.md - Handle datetime, UUID, custom classes
  • patterns/jsonpath-querying.md - Advanced nested data extraction

Security:

  • anti-patterns/security-json-injection.md - Prevent injection attacks
  • anti-patterns/eval-usage.md - Why never to use eval()

Examples:

  • examples/high-performance-parsing.py - orjson and msgspec code
  • examples/large-file-streaming.py - Streaming with ijson
  • examples/secure-validation.py - jsonschema validation

Tools:

  • tools/json-performance-benchmark.py - Benchmark different libraries

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.38%
按下载量换算32

Claude

30.57%
按下载量换算28

Cursor

18%
按下载量换算17

Gemini CLI

9.97%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills