[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-441":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":30,"readmeContent":31,"aiSummary":32,"trendingCount":16,"starSnapshotCount":16,"syncStatus":33,"lastSyncTime":34,"discoverSource":35},441,"flask","pallets\u002Fflask","pallets","The Python micro framework for building web applications.","https:\u002F\u002Fflask.palletsprojects.com",null,"Python",71639,16872,2084,3,0,15,171,11,45,"BSD 3-Clause \"New\" or \"Revised\" License",false,"main",[5,25,7,26,27,28,29],"jinja","python","web-framework","werkzeug","wsgi","2026-06-12 02:00:13","\u003Cdiv align=\"center\">\u003Cimg src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fpallets\u002Fflask\u002Frefs\u002Fheads\u002Fstable\u002Fdocs\u002F_static\u002Fflask-name.svg\" alt=\"\" height=\"150\">\u003C\u002Fdiv>\n\n# Flask\n\nFlask is a lightweight [WSGI] web application framework. It is designed\nto make getting started quick and easy, with the ability to scale up to\ncomplex applications. It began as a simple wrapper around [Werkzeug]\nand [Jinja], and has become one of the most popular Python web\napplication frameworks.\n\nFlask offers suggestions, but doesn't enforce any dependencies or\nproject layout. It is up to the developer to choose the tools and\nlibraries they want to use. There are many extensions provided by the\ncommunity that make adding new functionality easy.\n\n[WSGI]: https:\u002F\u002Fwsgi.readthedocs.io\u002F\n[Werkzeug]: https:\u002F\u002Fwerkzeug.palletsprojects.com\u002F\n[Jinja]: https:\u002F\u002Fjinja.palletsprojects.com\u002F\n\n## A Simple Example\n\n```python\n# save this as app.py\nfrom flask import Flask\n\napp = Flask(__name__)\n\n@app.route(\"\u002F\")\ndef hello():\n    return \"Hello, World!\"\n```\n\n```\n$ flask run\n  * Running on http:\u002F\u002F127.0.0.1:5000\u002F (Press CTRL+C to quit)\n```\n\n## Donate\n\nThe Pallets organization develops and supports Flask and the libraries\nit uses. 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","Flask 是一个轻量级的 Python 微型 Web 应用框架，旨在快速轻松地构建 Web 应用程序。其核心功能包括灵活的路由系统、支持多种模板引擎（默认使用 Jinja2），以及通过 Werkzeug 提供强大的 WSGI 工具包。Flask 不强制依赖特定库或项目结构，开发者可以自由选择需要的工具和扩展，社区提供了丰富的第三方扩展来增强功能。适用于从简单的个人项目到复杂的企业级应用的各种场景，尤其适合追求开发效率与灵活性的小型至中型项目。",2,"2026-06-11 02:35:46","top_all"]