[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-2252":3},{"id":4,"name":5,"fullName":6,"owner":5,"repo":5,"description":7,"homepage":8,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":15,"forks30d":15,"starsTrendScore":19,"compositeScore":20,"rankGlobal":9,"rankLanguage":9,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":22,"topics":24,"createdAt":9,"pushedAt":9,"updatedAt":26,"readmeContent":27,"aiSummary":28,"trendingCount":15,"starSnapshotCount":15,"syncStatus":29,"lastSyncTime":30,"discoverSource":31},2252,"cookiecutter","cookiecutter\u002Fcookiecutter","A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.","https:\u002F\u002Fpypi.org\u002Fproject\u002Fcookiecutter\u002F",null,"Python",24937,2242,224,231,0,6,20,79,18,99.9,"BSD 3-Clause \"New\" or \"Revised\" License",false,"main",[5,25],"python","2026-06-12 04:00:14","\u003Ch1 align=\"center\">\n    \u003Cimg alt=\"cookiecutter Logo\" width=\"200px\" src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fcookiecutter\u002Fcookiecutter\u002Fmain\u002Flogo\u002Fcookiecutter_medium.png\">\n\u003C\u002Fh1>\n\n\u003Cdiv align=\"center\">\n\n[![pypi](https:\u002F\u002Fimg.shields.io\u002Fpypi\u002Fv\u002Fcookiecutter.svg)](https:\u002F\u002Fpypi.org\u002Fproject\u002Fcookiecutter\u002F)\n[![python](https:\u002F\u002Fimg.shields.io\u002Fpypi\u002Fpyversions\u002Fcookiecutter.svg)](https:\u002F\u002Fpypi.org\u002Fproject\u002Fcookiecutter\u002F)\n[![PyPI Downloads](https:\u002F\u002Fstatic.pepy.tech\u002Fpersonalized-badge\u002Fcookiecutter?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads)](https:\u002F\u002Fpepy.tech\u002Fprojects\u002Fcookiecutter)\n[![GitHub Stars](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fstars\u002Fcookiecutter\u002Fcookiecutter?style=flat&logo=github&label=stars)](https:\u002F\u002Fgithub.com\u002Fcookiecutter\u002Fcookiecutter)\n[![discord](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FDiscord-cookiecutter-5865F2?style=flat&logo=discord&logoColor=white)](https:\u002F\u002Fdiscord.gg\u002F9BrxzPKuEW)\n[![docs](https:\u002F\u002Freadthedocs.org\u002Fprojects\u002Fcookiecutter\u002Fbadge\u002F?version=latest)](https:\u002F\u002Freadthedocs.org\u002Fprojects\u002Fcookiecutter\u002F?badge=latest)\n\n\u003C\u002Fdiv>\n\n# Cookiecutter\n\nCreate projects swiftly from **cookiecutters** (project templates) with this command-line utility. Ideal for generating Python package projects and more.\n\n- [Documentation](https:\u002F\u002Fcookiecutter.readthedocs.io)\n- [GitHub](https:\u002F\u002Fgithub.com\u002Fcookiecutter\u002Fcookiecutter)\n- [PyPI](https:\u002F\u002Fpypi.org\u002Fproject\u002Fcookiecutter\u002F)\n- [License (BSD)](https:\u002F\u002Fgithub.com\u002Fcookiecutter\u002Fcookiecutter\u002Fblob\u002Fmain\u002FLICENSE)\n\n## Installation\n\nInstall Cookiecutter as a CLI tool with [uv](https:\u002F\u002Fdocs.astral.sh\u002Fuv\u002F):\n```\nuv tool install cookiecutter\n```\n\n## Features\n\n- **Cross-Platform:** Supports Windows, Mac, and Linux.\n- **User-Friendly:** No Python knowledge required.\n- **Versatile:** Compatible with Python 3.10 to 3.14.\n- **Multi-Language Support:** Use templates in any language or markup format.\n\n### For Users\n\n#### Quickstart\n\nThe most common way to use Cookiecutter is as a command line utility with a GitHub-hosted Cookiecutter template such as https:\u002F\u002Fgithub.com\u002Faudreyfeldroy\u002Fcookiecutter-pypackage\n\n**Use a GitHub-hosted Cookiecutter template**\n\n```bash\n# You'll be prompted to enter values.\n# Then it'll create your Python package in the current working directory,\n# based on those values.\n# For the sake of brevity, repos on GitHub can just use the 'gh' prefix\n$ uvx cookiecutter gh:audreyfeldroy\u002Fcookiecutter-pypackage\n```\n\n**Use a local template**\n\n```bash\n$ uvx cookiecutter cookiecutter-pypackage\u002F\n```\n\n**Use it from Python**\n\nIf you plan to use Cookiecutter programmatically, please run `uv add cookiecutter` to add it to your project. Then you can import and use it like this:\n\n```py\nfrom cookiecutter.main import cookiecutter\n\n# Create project from the cookiecutter-pypackage\u002F template\ncookiecutter('cookiecutter-pypackage\u002F')\n\n# Create project from the cookiecutter-pypackage.git repo template\ncookiecutter('gh:audreyfeldroy\u002Fcookiecutter-pypackage')\n```\n\n> If Cookiecutter saves you time, [star it on GitHub](https:\u002F\u002Fgithub.com\u002Fcookiecutter\u002Fcookiecutter) so other developers can find it too.\n\n#### Detailed Usage\n\n- Generate projects from local or remote templates.\n- Customize projects with `cookiecutter.json` prompts.\n- Utilize pre-prompt, pre- and post-generate hooks.\n\n[Learn More](https:\u002F\u002Fcookiecutter.readthedocs.io\u002Fen\u002Flatest\u002Fusage.html)\n\n### For Template Creators\n\n- **Any language, any framework.** A Cookiecutter template is just a directory with variables. It works for Python, Rust, Terraform, docs sites, whatever you build repeatedly.\n- **Hooks for the rest of the setup.** Pre- and post-generate scripts (shell or Python) handle git init, dependency installs, or anything else your boilerplate needs.\n- **One file defines the interface.** `cookiecutter.json` declares every variable and its default. Users answer prompts; the template does the rest.\n\n[Learn More](https:\u002F\u002Fcookiecutter.readthedocs.io\u002Fen\u002Flatest\u002Ftutorials\u002F)\n\n## Available Templates\n\nDiscover a variety of ready-to-use templates on [GitHub](https:\u002F\u002Fgithub.com\u002Fsearch?q=cookiecutter&type=Repositories).\n\n### Special Templates\n\n- [cookiecutter-pypackage](https:\u002F\u002Fgithub.com\u002Faudreyfeldroy\u002Fcookiecutter-pypackage)\n- [cookiecutter-django](https:\u002F\u002Fgithub.com\u002Fcookiecutter\u002Fcookiecutter-django)\n- [cookiecutter-pytest-plugin](https:\u002F\u002Fgithub.com\u002Fpytest-dev\u002Fcookiecutter-pytest-plugin)\n- [cookiecutter-plone-starter](https:\u002F\u002Fgithub.com\u002Fcollective\u002Fcookiecutter-plone-starter)\n\n## Community\n\nJoin the community, contribute, or seek assistance.\n\n- [Troubleshooting Guide](https:\u002F\u002Fcookiecutter.readthedocs.io\u002Fen\u002Flatest\u002Ftroubleshooting.html)\n- [Stack Overflow](https:\u002F\u002Fstackoverflow.com\u002Fquestions\u002Ftagged\u002Fcookiecutter)\n- [Discord](https:\u002F\u002Fdiscord.gg\u002F9BrxzPKuEW)\n- [File an Issue](https:\u002F\u002Fgithub.com\u002Fcookiecutter\u002Fcookiecutter\u002Fissues?q=is%3Aopen)\n- [Contributors](AUTHORS.md)\n- [Contribution Guide](CONTRIBUTING.md)\n\n### Feedback\n\nWe value your feedback. Share your criticisms or complaints constructively to help us improve.\n\n- [File an Issue](https:\u002F\u002Fgithub.com\u002Fcookiecutter\u002Fcookiecutter\u002Fissues?q=is%3Aopen)\n\n### Waiting for a Response?\n\n- Be patient and consider reaching out to the community for assistance.\n- For enterprise support, contact support@feldroy.com.\n\n## Code of Conduct\n\nAdhere to the [PyPA Code of Conduct](https:\u002F\u002Fwww.pypa.io\u002Fen\u002Flatest\u002Fcode-of-conduct\u002F) during all interactions in the project's ecosystem.\n\n## Acknowledgements\n\nCreated and led by [Audrey M. Roy Greenfeld](https:\u002F\u002Fgithub.com\u002Faudreyfeldroy), supported by a dedicated team of maintainers and contributors.\n","Cookiecutter 是一个跨平台的命令行工具，用于从项目模板（cookiecutters）创建新项目，例如 Python 包或 C 项目。其核心功能包括支持 Windows、Mac 和 Linux 操作系统，用户无需具备 Python 知识即可轻松使用。此外，Cookiecutter 兼容多种语言和标记格式的模板，并且支持 Python 3.10 至 3.14 版本。非常适合开发者快速启动新项目，尤其是需要频繁创建具有相同结构的项目时，如开发多个 Python 库或应用框架。",2,"2026-06-11 02:49:05","top_language"]