Skip to main content

A Python-centric micro-framework for building web applications

Project description

PyKite: A research and development initiative for crafting a Python-centric micro framework.

PyKite Icon

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:

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:
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()
  1. 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 framework.

License

This project is licensed under the MIT License.

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

pykite-1.0.1.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

pykite-1.0.1-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file pykite-1.0.1.tar.gz.

File metadata

  • Download URL: pykite-1.0.1.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.6

File hashes

Hashes for pykite-1.0.1.tar.gz
Algorithm Hash digest
SHA256 322a96fd8214dea9a4fbc77d2196fabe594cd6349855666cd97766af1ad8cd8a
MD5 fd6721f97da4cab0a0286512e3d0f352
BLAKE2b-256 2ca8287b463cb93676e79f3a9c51b0e3ac6e4c563a473d513c1e39a328821a22

See more details on using hashes here.

File details

Details for the file pykite-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: pykite-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 9.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.6

File hashes

Hashes for pykite-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 312c3f29033450fca39bea28a52276e2af6768ab0200b0408e16a11e6c1b908b
MD5 6df7cddb08998f67a7389d0cdfc7358d
BLAKE2b-256 69392f31288d698e0d1b2740a972a97b264d23df30397797772651831fca4bb6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page