Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Requests | 50,274 | 152,228 | 51,242 | a day ago | 151 | May 22, 2023 | 261 | apache-2.0 | Python | |
A simple, yet elegant, HTTP library. | ||||||||||
Werkzeug | 6,422 | 67,722 | 1,832 | 3 days ago | 91 | June 08, 2023 | 1 | bsd-3-clause | Python | |
The comprehensive WSGI web application library. | ||||||||||
Xutils3 | 5,914 | 905 | 1 | 2 years ago | 87 | June 18, 2020 | 26 | other | Java | |
Android orm, bitmap, http, view inject... | ||||||||||
Evercookie | 3,798 | 6 years ago | February 22, 2021 | 53 | JavaScript | |||||
Produces persistent, respawning "super" cookies in a browser, abusing over a dozen techniques. Its goal is to identify users after they've removed standard cookies and other privacy data such as Flash cookies (LSOs), HTML5 storage, SilverLight storage, and others. | ||||||||||
Req | 3,611 | 42 | 316 | a day ago | 181 | August 12, 2023 | 19 | mit | Go | |
Simple Go HTTP client with Black Magic | ||||||||||
Rxeasyhttp | 3,022 | 2 years ago | 29 | apache-2.0 | Java | |||||
本库是一款基于RxJava2+Retrofit2实现简单易用的网络请求框架,结合android平台特性的网络封装库,采用api链式调用一点到底,集成cookie管理,多种缓存模式,极简https配置,上传下载进度显示,请求错误自动重试,请求携带token、时间戳、签名sign动态配置,自动登录成功后请求重发功能,3种层次的参数设置默认全局局部,默认标准ApiResult同时可以支持自定义的数据结构,已经能满足现在的大部分网络请求。 | ||||||||||
Auth Boss | 2,843 | 7 years ago | ||||||||
🔒 Become an Auth Boss. Learn about different authentication methodologies on the web. | ||||||||||
Must Know About Frontend | 2,547 | 4 months ago | ||||||||
:mortar_board: 취준생이라면 알면 좋을 프론트엔드 관련 지식들 | ||||||||||
Httpoison | 2,168 | 4,019 | 1,670 | 2 months ago | 49 | March 10, 2023 | 30 | mit | Elixir | |
Yet Another HTTP client for Elixir powered by hackney | ||||||||||
Htty | 1,750 | 3 | 2 | 4 years ago | 25 | December 10, 2015 | 34 | other | Ruby | |
htty is the HTTP TTY, a console application for interacting with web servers. |
werkzeug German noun: "tool". Etymology: werk ("work"), zeug ("stuff")
Werkzeug is a comprehensive WSGI web application library. It began as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility libraries.
It includes:
Werkzeug doesn't enforce any dependencies. It is up to the developer to choose a template engine, database adapter, and even how to handle requests. It can be used to build all sorts of end user applications such as blogs, wikis, or bulletin boards.
Flask wraps Werkzeug, using it to handle the details of WSGI while providing more structure and patterns for defining powerful applications.
Install and update using pip:
pip install -U Werkzeug
from werkzeug.wrappers import Request, Response
@Request.application
def application(request):
return Response('Hello, World!')
if __name__ == '__main__':
from werkzeug.serving import run_simple
run_simple('localhost', 4000, application)
The Pallets organization develops and supports Werkzeug and other popular packages. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.