[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-2647":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":19,"compositeScore":20,"rankGlobal":10,"rankLanguage":10,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":22,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":16,"starSnapshotCount":16,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},2647,"click","pallets\u002Fclick","pallets","Python composable command line interface toolkit","https:\u002F\u002Fclick.palletsprojects.com",null,"Python",17530,1772,181,87,0,8,78,3,44.75,"BSD 3-Clause \"New\" or \"Revised\" License",false,"main",[25,5,7,26],"cli","python","2026-06-12 02:00:42","\u003Cdiv align=\"center\">\u003Cimg src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fpallets\u002Fclick\u002Frefs\u002Fheads\u002Fstable\u002Fdocs\u002F_static\u002Fclick-name.svg\" alt=\"\" height=\"150\">\u003C\u002Fdiv>\n\n# Click\n\nClick is a Python package for creating beautiful command line interfaces\nin a composable way with as little code as necessary. It's the \"Command\nLine Interface Creation Kit\". It's highly configurable but comes with\nsensible defaults out of the box.\n\nIt aims to make the process of writing command line tools quick and fun\nwhile also preventing any frustration caused by the inability to\nimplement an intended CLI API.\n\nClick in three points:\n\n-   Arbitrary nesting of commands\n-   Automatic help page generation\n-   Supports lazy loading of subcommands at runtime\n\n\n## A Simple Example\n\n```python\nimport click\n\n@click.command()\n@click.option(\"--count\", default=1, help=\"Number of greetings.\")\n@click.option(\"--name\", prompt=\"Your name\", help=\"The person to greet.\")\ndef hello(count, name):\n    \"\"\"Simple program that greets NAME for a total of COUNT times.\"\"\"\n    for _ in range(count):\n        click.echo(f\"Hello, {name}!\")\n\nif __name__ == '__main__':\n    hello()\n```\n\n```\n$ python hello.py --count=3\nYour name: Click\nHello, Click!\nHello, Click!\nHello, Click!\n```\n\n\n## Donate\n\nThe Pallets organization develops and supports Click and other popular\npackages. In order to grow the community of contributors and users, and\nallow the maintainers to devote more time to the projects, [please\ndonate today][].\n\n[please donate today]: https:\u002F\u002Fpalletsprojects.com\u002Fdonate\n\n## Contributing\n\nSee our [detailed contributing documentation][contrib] for many ways to\ncontribute, including reporting issues, requesting features, asking or answering\nquestions, and making PRs.\n\n[contrib]: https:\u002F\u002Fpalletsprojects.com\u002Fcontributing\u002F\n","Click 是一个用于创建美观且可组合的命令行界面的 Python 包，旨在以最少的代码量实现功能。其核心特点包括支持命令的任意嵌套、自动生成帮助页面以及运行时动态加载子命令。适用于需要快速开发命令行工具的场景，尤其适合那些希望减少编写CLI相关代码工作量同时保持高度可配置性的开发者。通过提供合理的默认设置和强大的扩展能力，Click 使得构建复杂的命令行应用变得简单而高效。",2,"2026-06-11 02:50:38","top_language"]