A simple Python web framework for building web applications.
Project description
#DOVCHA: Python Web Framework build for learning purposes
DOVCHA is a Python web framework built for learning purposes.
It's a WSGI framework and can be used with any WSGI application server such as Gunicorn.
Installation
pip install dovcha
How to use it
Basic usage:
from dovcha.api import DovchaApp
app = DovchaApp()
@app.route("/home")
def home(request, response):
response.text = "Hello from the HOME page"
@app.route("/hello{name}")
def greeting(request, response, name):
response.text = f"Hello, {name}"
@app.route("/book")
class BookResource:
def get(self, req, resp):
resp.text = "Books Page"
def post(self, req, resp):
resp.text = "Endpoint to create a book"
@app.route("/template")
def template_handler(request, response):
response.html = app.template(
"home.html",
context={"new_title": "New Title", "new_body": "New body"}
)
Unit Tests
The recommended way of writing unit tests is with pytest. There are two built in fixtures that you may want to use when writing unit test with Dovcha. The first one is 'app' which is an instance of the main 'API' class:
def test_route_overlap_throws_exception(app):
@app.route("/")
def home(req, resp):
resp.text = "Welcome Home."
with pytest.raises(AssertionError):
@app.route("/")
def home2(req, resp):
resp.text = "Welcome Home2."
The other one is 'client' that you can use to send HTTP requests to your handlers. It is based on the famous [requests] (https://requests.readthedocs.io/) and it should feel very familiar:
def test_parameterized_route(app, client):
@app.route("/{name}")
def hello(req, resp, name):
resp.text = f"hey {name}"
assert client.get("https//testserver/matthew").text == "hey matthew"
Templates
The default folder for templates is 'templates'. You can change it when initializing the main 'API()' class:
app = API(templates_dir="templates_dir_name")
Then you can use HTML files in that folder like so in a handler:
@app.route("/show/template")
def handler_with_template(req, resp):
resp.html = app.template(
"example.html", content={"title":"Awesome Framework", "body":"welcome to the future!"}
)
Static Files
Just like templates, the default folder for static files is 'static' and you can override it:
app = API(static_dir="static_dir_name")
Then you can use the files inside this folder in HTML files:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{title}}</title>
<link href="/static/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>{{body}}</h1>
<p>This is a paragraph</p>
</body>
</html>
Middleware
You can create custom middleware classes by inheriting from the 'dovcha.middleware.Middleware' class and overriding its two methods that are called before and after each request:
from dovcha.api import API
from dovcha.middleware import Middleware
app = API()
class SimpleCustomMiddleware(Middleware):
def process_request(self, req):
print("Before dispatch", req.url)
def process_response(self, req, res):
print("After dispatch", req.url)
app.add_middleware(SimpleCustomMiddleware)
Project details
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 dovcha-0.2.0.tar.gz.
File metadata
- Download URL: dovcha-0.2.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89a7477e9b5ffa06ce3ffe72d0654f56245d8c8f790c731caf5d96f5431a2b29
|
|
| MD5 |
da0616ce2397f19aa9dfee2a053bdc7a
|
|
| BLAKE2b-256 |
63859d77e15ecadf944ee70bb49bbe1d9085d45926b182f74eb2b94ded61b7eb
|
File details
Details for the file dovcha-0.2.0-py3-none-any.whl.
File metadata
- Download URL: dovcha-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf17fb5a74a0cfb421a81b646baf269a9fcba047a32ead1fd75e7a1181ed4baf
|
|
| MD5 |
cf86e345509746e3fc526b0c24166226
|
|
| BLAKE2b-256 |
30e9fac96830302270d6b27b83de22c36dc877d1a09b483a568635a623a00da0
|