Werkzeug

The comprehensive WSGI web application library.
Alternatives To Werkzeug
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Requests50,274152,22851,242a day ago151May 22, 2023261apache-2.0Python
A simple, yet elegant, HTTP library.
Werkzeug6,42267,7221,8323 days ago91June 08, 20231bsd-3-clausePython
The comprehensive WSGI web application library.
Xutils35,91490512 years ago87June 18, 202026otherJava
Android orm, bitmap, http, view inject...
Evercookie3,798
6 years agoFebruary 22, 202153JavaScript
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.
Req3,61142316a day ago181August 12, 202319mitGo
Simple Go HTTP client with Black Magic
Rxeasyhttp3,022
2 years ago29apache-2.0Java
本库是一款基于RxJava2+Retrofit2实现简单易用的网络请求框架,结合android平台特性的网络封装库,采用api链式调用一点到底,集成cookie管理,多种缓存模式,极简https配置,上传下载进度显示,请求错误自动重试,请求携带token、时间戳、签名sign动态配置,自动登录成功后请求重发功能,3种层次的参数设置默认全局局部,默认标准ApiResult同时可以支持自定义的数据结构,已经能满足现在的大部分网络请求。
Auth Boss2,843
7 years ago
🔒 Become an Auth Boss. Learn about different authentication methodologies on the web.
Must Know About Frontend2,547
4 months ago
:mortar_board: 취준생이라면 알면 좋을 프론트엔드 관련 지식들
Httpoison2,1684,0191,6702 months ago49March 10, 202330mitElixir
Yet Another HTTP client for Elixir powered by hackney
Htty1,750324 years ago25December 10, 201534otherRuby
htty is the HTTP TTY, a console application for interacting with web servers.
Alternatives To Werkzeug
Select To Compare


Alternative Project Comparisons
Readme

Werkzeug

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:

  • An interactive debugger that allows inspecting stack traces and source code in the browser with an interactive interpreter for any frame in the stack.
  • A full-featured request object with objects to interact with headers, query args, form data, files, and cookies.
  • A response object that can wrap other WSGI applications and handle streaming data.
  • A routing system for matching URLs to endpoints and generating URLs for endpoints, with an extensible system for capturing variables from URLs.
  • HTTP utilities to handle entity tags, cache control, dates, user agents, cookies, files, and more.
  • A threaded WSGI server for use while developing applications locally.
  • A test client for simulating HTTP requests during testing without requiring running a server.

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.

Installing

Install and update using pip:

pip install -U Werkzeug

A Simple Example

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)

Donate

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.

Links

Popular Http Projects
Popular Cookie Projects
Popular Networking Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Http
Cookie