Metadata-Version: 2.4
Name: wheezy.web
Version: 3.2.1
Summary: A lightweight, high performance, high concurrency WSGI web framework with the key features to build modern, efficient web
Author-email: Andriy Kornatskyy <andriy.kornatskyy@live.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/akornatskyy/wheezy.web
Project-URL: Source, https://github.com/akornatskyy/wheezy.web
Project-URL: Issues, https://github.com/akornatskyy/wheezy.web/issues
Keywords: wsgi,web,handler,static,template,mako,tenjin,jinja2,routing,middleware,caching,transforms
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: wheezy.core>=3.2.3
Requires-Dist: wheezy.caching>=3.2.1
Requires-Dist: wheezy.html>=3.2.1
Requires-Dist: wheezy.http>=3.2.3
Requires-Dist: wheezy.routing>=3.2.1
Requires-Dist: wheezy.security>=3.2.2
Requires-Dist: wheezy.validation>=3.2.1
Provides-Extra: cython
Requires-Dist: Cython>=3.0; extra == "cython"
Requires-Dist: setuptools>=61.0; extra == "cython"
Provides-Extra: mako
Requires-Dist: mako>=1.3.10; extra == "mako"
Provides-Extra: tenjin
Requires-Dist: tenjin>=1.1.1; extra == "tenjin"
Provides-Extra: jinja2
Requires-Dist: jinja2>=3.1.6; extra == "jinja2"
Provides-Extra: wheezy-template
Requires-Dist: wheezy.template>=3.2.5; extra == "wheezy-template"
Dynamic: license-file

# wheezy.web

[![tests](https://github.com/akornatskyy/wheezy.web/actions/workflows/tests.yml/badge.svg)](https://github.com/akornatskyy/wheezy.web/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/akornatskyy/wheezy.web/badge.svg?branch=master)](https://coveralls.io/github/akornatskyy/wheezy.web?branch=master)
[![Documentation Status](https://readthedocs.org/projects/wheezyweb/badge/?version=latest)](https://wheezyweb.readthedocs.io/en/latest/?badge=latest)
[![pypi version](https://badge.fury.io/py/wheezy.web.svg)](https://badge.fury.io/py/wheezy.web)

[wheezy.web](https://pypi.org/project/wheezy.web/) is a lightweight,
[high performance](https://mindref.blogspot.com/2012/09/python-fastest-web-framework.html),
high concurrency [WSGI](http://www.python.org/dev/peps/pep-3333) web
framework with the key features to *build modern, efficient web*:

- MVC architectural pattern
  ([push](http://en.wikipedia.org/wiki/Web_application_framework#Push-based_vs._pull-based)-based).
- Functionality includes
  [routing](https://github.com/akornatskyy/wheezy.routing),
  [model update/validation](https://github.com/akornatskyy/wheezy.validation),
  [authentication/authorization](https://github.com/akornatskyy/wheezy.security),
  [content](https://wheezyhttp.readthedocs.io/en/latest/userguide.html#content-cache)
  [caching](https://github.com/akornatskyy/wheezy.caching) with
  [dependency](https://wheezycaching.readthedocs.io/en/latest/userguide.html#cachedependency),
  xsrf/resubmission protection, AJAX+JSON, i18n (gettext),
  middlewares, and more.
- Template engine agnostic (integration with
  [jinja2](http://jinja.pocoo.org),
  [mako](http://www.makotemplates.org),
  [tenjin](http://www.kuwata-lab.com/tenjin/) and
  [wheezy.template](https://github.com/akornatskyy/wheezy.template)) plus
  [html widgets](https://github.com/akornatskyy/wheezy.html).

It is optimized for performance, well tested and documented.

Resources:

- [source code](https://github.com/akornatskyy/wheezy.web),
  [examples](https://github.com/akornatskyy/wheezy.web/tree/master/demos)
  ([live](http://wheezy.pythonanywhere.com)) and
  [issues](https://github.com/akornatskyy/wheezy.web/issues)
  tracker are available on
  [github](https://github.com/akornatskyy/wheezy.web)
- [documentation](https://wheezyweb.readthedocs.io/en/latest/)

## Install

[wheezy.web](https://pypi.org/project/wheezy.web/) requires
[python](https://www.python.org) version 3.10+. It is independent of operating
system. You can install it from [pypi](https://pypi.org/project/wheezy.web/)
site:

```sh
pip install -U wheezy.web
```

If you run into any issue or have comments, go ahead and add on
[github](https://github.com/akornatskyy/wheezy.web).
