https://github.com/imamhossainroni/pykite
PyKite represents a research and development endeavor aimed at crafting a Python-centric micro framework initiative.
https://github.com/imamhossainroni/pykite
api framework http pykite python web
Last synced: 24 days ago
JSON representation
PyKite represents a research and development endeavor aimed at crafting a Python-centric micro framework initiative.
- Host: GitHub
- URL: https://github.com/imamhossainroni/pykite
- Owner: ImamHossainRoni
- License: mit
- Created: 2022-07-27T16:36:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-12T20:03:28.000Z (over 1 year ago)
- Last Synced: 2025-09-29T06:13:06.375Z (4 months ago)
- Topics: api, framework, http, pykite, python, web
- Language: Python
- Homepage: https://pykite.readthedocs.io/en/latest/
- Size: 696 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### PyKite: A research and development initiative for crafting a Python-centric micro framework.
[//]: # ()

## Features
- **Route Definition:** Define routes using the `@app.route(path)` decorator.
- **HTTP Request Handling:** Create handler functions for each route to process and respond to incoming HTTP requests.
- **Development Server:** Start a development server with a single command, making it easy to test your application locally.
- **Basic Error Handling:** Includes a default 404 response for routes that are not found.
## Installation
To get started with PyKite, follow these steps:
```bash
pip install pykite
```
## Run the application
1. Create a Python script for your web application using PyKite. Define routes and handlers as needed.
2. Run your application using the `run` method:
```python
from pykite import PyKite
from pykite.http.response import Response
# Create a PyKite application
app = PyKite(debug=True)
# Define a route for the '/' path
@app.route('/')
def index(request, response):
"""Respond with a JSON object containing the message "Hello, World!" to all requests to the '/' path."""
data = {"message": "Hello, World!"}
response = Response(data=data, status=200)
return response
@app.route('/hello/{name}')
def hello(request, response, name):
""" Took a name from the URL and responds with a friendly greeting in JSON."""
data = {"message": f"Hello, {name}"}
response = Response(data=data, status=200)
return response
# Run the application
if __name__ == "__main__":
app.run()
```
3. Access your application in a web browser at http://localhost:8000.
## Middleware
Middleware in web development refers to software components that sit between a web server and an application. They intercept requests and responses, allowing for additional processing or modification before they reach the application or client. Middleware can be used for tasks like authentication, authorization, logging, caching, and more. Let's see [ 👉 how to use middleware in `PyKite`](docs/middleware.md) framework.
## License
This project is licensed under the [MIT License](LICENSE).