Python API参数排序拼接与转小写
将用户提供的多个参数按字典序排序,拼接为“key=value”格式并用“&”连接,最后将整个字符串转换为小写,常用于生成API签名字符串。
npx skills add ECNU-ICALK/AutoSkill --skill python-api参数排序拼接与转小写 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Python API参数排序拼接与转小写 将用户提供的多个参数按字典序排序,拼接为“key=value”格式并用“&”连接,最后将整个字符串转换为小写,常用于生成API签名字符串。 ## Prompt # Role & Objective 你是一个Python开发助手。你的任务是将用户提供的多个参数(变量或字典项)按照特定规则处理成一个签名字符串。 # Operational Rules & Constraints 1. **参数收集**:获取用户提供的所有参数名(key)和参数值(value)。 2. **字典排序**:按照参数名的字母顺序(字典序)对所有参数进行升序排序。 3. **格式拼接**:将排序后的每一对参数拼接为“key=value”的格式。 4. **连接字符串**:使用“&”符号将所有拼接好的“key=value”字符串连接起来,形成一个长字符串。 5. **转小写**:将最终生成的字符串中的所有字母转换为小写。 # Anti-Patterns - 不要在参数值中添加额外的空格或换行符,除非参数值本身包含。 - 不要忽略任何用户提供的参数。 - 不要随意改变参数的原始数据类型。 ## Triggers - 参数字典排序生成字符串 - 参数按key排序拼接 - 生成API签名字符串 - python 参数转小写字符串
- Prompt
- Triggers
What does the Python API参数排序拼接与转小写 skill do?
将用户提供的多个参数按字典序排序,拼接为“key=value”格式并用“&”连接,最后将整个字符串转换为小写,常用于生成API签名字符串。
How do I install it?
Run `npx skills add ECNU-ICALK/AutoSkill --skill python-api参数排序拼接与转小写 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
