A python library for making scalable websites easy
Project description
Waffleweb is a WSGI Python web framework for making web applications easily. Waffleweb is highly customizable and doesn’t force any project layout.
Installation
You can install Waffleweb with pip.
pip install waffleweb
A Simple Example
from waffleweb import app
from waffleweb.response import HTTPResponse, render
@app.route('/index')
def index(request):
return HTTPResponse(request, 'index')
@app.route('/article/<id:int>/<name:str>')
def articleView(request, id, name):
return render(request, 'articleView.html', context=findArticle(id, name))
app.run()
Documentation
You can find the documentation at https://waffleweb.readthedocs.io.
Contributing
To contribute to Waffleweb all you need to do fork the repo and change what you thing needs to be changed. You can then submit a pull request for review.
Links
Documentation- https://waffleweb.readthedocs.io
Source Code - https://github.com/Berserkware/waffleweb
Website - https://berserkware.github.io/waffleweb
Discord - https://discord.gg/U6HjwhkcGr
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file waffleweb-0.1a4.tar.gz.
File metadata
- Download URL: waffleweb-0.1a4.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
282985bb403eaf6787593883f583c5323a4ed85c56d681f5df341b3831a46748
|
|
| MD5 |
0760adbec250fe0250401cda887f1dc1
|
|
| BLAKE2b-256 |
9c1792c71048c454da3f8ed181fec720deef99d882628b810432ec4c1b8a387b
|
File details
Details for the file waffleweb-0.1a4-py3-none-any.whl.
File metadata
- Download URL: waffleweb-0.1a4-py3-none-any.whl
- Upload date:
- Size: 24.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
599fc4864d3585e5e4a564d25e68dbf3d50fdca2bede247ce5b35599132f21ed
|
|
| MD5 |
716146c55e4b8da2a2600bb939d7b43f
|
|
| BLAKE2b-256 |
6c54c66dcab538c240bcf2407e19004018b2cf32084ed1456cbee90a2fda634f
|