摘要:地址簡介用極少的代碼實現一款框架,目標是用低于行的代碼實現的核心功能,框架基于以上開發特點安裝路由請求相應中間件歡迎或者地址
簡介github地址: https://github.com/gaojiuli/xweb
用極少的代碼實現一款web框架,目標是用低于1000行的代碼實現flask的核心功能,xweb框架基于python3.5以上開發
特點few code
do more
no dependencies
安裝pip install xweb
hello worldfrom xweb.application import XWeb app = XWeb() @app.route("/") def hello(): return "hello world!" app.listen(3000)路由
from xweb.application import XWeb app = XWeb() @app.route("/:name/") def call_my_name(name): return "hi {}!".format(name) app.listen(3000)請求
from xweb.globals import request request.path request.query_string request.query request.files request.forms request.json request.ip request.hostname request.headers相應
from xweb.globals import response response.headers response.status response.body中間件
from xweb.application import XWeb app = XWeb() @app.middleware("request") def print_on_request1(): print("I print when a request is received by the server1") @app.middleware("request") def print_on_request2(): print("I print when a request is received by the server2") @app.middleware("response") def print_on_response1(): print("I print when a response is returned by the server1") @app.middleware("response") def print_on_response2(): print("I print when a response is returned by the server2") @app.route("/:name/") def call_my_name(name): return "hi {}!".format(name) app.listen(3000)TODO
more http status code
some necessary middleware
enough test code
support blueprint
a cool logo
歡迎star或者fork
github地址: xweb
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/38484.html
摘要:地址簡介用極少的代碼實現一款框架,目標是用低于行的代碼實現的核心功能,框架基于以上開發特點安裝路由請求相應中間件歡迎或者地址 github地址: https://github.com/gaojiuli/xweb 簡介 用極少的代碼實現一款web框架,目標是用低于1000行的代碼實現flask的核心功能,xweb框架基于python3.5以上開發 特點 few code do more...
摘要:簡介項目地址眾所周知如今的后端開發主要是負責接口的開發而前后端分離又是當下最流行的如果使用技術棧通常情況下我們會選擇全套或者他們的模板引擎功能在當下的后端開發中是基本不用的同時由于它們開始的時候是基于寫的造成了現在代碼中充斥著大量丑陋的兼容 簡介 showImg(https://segmentfault.com/img/remote/1460000008633918?w=280&h=1...
摘要:為什么我會說它們是一樣的簡單思考一下我的后端書架后端掘金我的后端書架月前本書架主要針對后端開發與架構。一方案調研版本選擇當前主流版本是和應用的后臺運行配置后端掘金醬油一篇,整理一下關于后臺運行的一些配置方式。 分享 50 個完整的 React Native 項目 - 掘金本文為 Marno 原創,轉載必須保留出處! 公眾號 aMarno,關注后回復 RN 加入交流群 簡書專題《 Rea...
摘要:發布于之后,采用了完全不同的方式,使用函數定義任務。它允許開發者使用它們的補丁和更新來修復這些安全漏洞。提供了工具用于掃描依賴來監測漏洞。是一個開源診斷工具,用于和應用。是和開發的一款新的包管理工具。與相比,它解決了安全性能以及一致性問題。 譯者按: 最全的JavaScript開發工具列表,總有一款適合你! 原文: THE ULTIMATE LIST OF JAVASCRIPT TOO...
閱讀 2478·2021-09-22 16:05
閱讀 2961·2021-09-10 11:24
閱讀 3633·2019-08-30 12:47
閱讀 2941·2019-08-29 15:42
閱讀 3379·2019-08-29 15:32
閱讀 1946·2019-08-26 11:48
閱讀 1083·2019-08-23 14:40
閱讀 903·2019-08-23 14:33