Skip to main content

A simple web framework for Python.

Project description

miniweb

A simple web framework for Python.

Example 1. Working with gunicorn.

/path/to/your/project/debugserver.py

from miniweb import Application
from miniweb import simplejson_api

@simplejson_api
def ping(http_request, http_response):
    return "pong"

@simplejson_api
def echo(http_request, http_response):
    return http_request.GET.get("msg", "")

application = Application()
application.router.add_route("/ping", ping)
application.router.add_route("/echo", echo)

/path/to/your/project/wsgi.conf.py

bind = ["0.0.0.0:9132"]
workers = 4
threads = 32
daemon = True
errorlog = "logs/gunicorn.error.log"
keepalive = 300
timeout = 300
graceful_timeout = 300
loglevel = "info"

start.sh

#!/bin/bash
cd /path/to/your/project/
gunicorn --config=wsgi.conf.py --pidfile=/path/to/your/project/gunicorn.pid debugserver:application

Test results:

In [14]: import requests

In [15]: requests.get('http://127.0.0.1:9132/ping').json()
Out[15]: {'success': True, 'result': 'pong', 'error': {'code': 0, 'message': 'OK'}}

In [16]: requests.get('http://127.0.0.1:9132/echo?msg=hello').json()
Out[16]: {'success': True, 'result': 'hello', 'error': {'code': 0, 'message': 'OK'}}

Example 2. Working with gevent.pywsgi.

/path/to/your/project/debugserver.py

  • Server code is the same with the server code using gunicorn.

start.sh

#!/bin/bash
cd /path/to/your/project/
python -m gevent.pywsgi -b 0.0.0.0:9132 debugserver:application

Test results:

In [14]: import requests

In [15]: requests.get('http://127.0.0.1:9132/ping').json()
Out[15]: {'success': True, 'result': 'pong', 'error': {'code': 0, 'message': 'OK'}}

In [16]: requests.get('http://127.0.0.1:9132/echo?msg=hello').json()
Out[16]: {'success': True, 'result': 'hello', 'error': {'code': 0, 'message': 'OK'}}

Example 3. Working with miniweb.ThreadingWSGIServer.

debugserver.py

from miniweb import ThreadingWSGIServer
from miniweb import Application
from miniweb import simplejson_api

@simplejson_api
def ping(http_request, http_response):
    return "pong"

@simplejson_api
def echo(http_request, http_response):
    return http_request.GET.get("msg", "")

def main():
    app = Application()
    app.router.add_route("/ping", ping)
    app.router.add_route("/echo", echo)
    server = ThreadingWSGIServer(app, listen="127.0.0.1", port=9132)
    server.serve_forever()

if __name__ == "__main__":
    main()

Start debugserver with command python3 debugserver.py, and then use ipython to do requests.

In [1]: import requests

In [2]: requests.get('http://127.0.0.1:9132/ping').content
Out[2]: b'{"success": true, "result": "pong", "error": {"code": 0, "message": "OK"}}'

In [3]: requests.get('http://127.0.0.1:9132/echo?msg=hi').content
Out[3]: b'{"success": true, "result": "hi", "error": {"code": 0, "message": "OK"}}'

How to write a request handler?

def ping(http_request:HttpRequest, http_resposne:HttpResponse) -> None:
    http_resposne.response("pong")
  1. A handle is a callable object and always takes two parameters: http_request and http_resposne.
  2. The parameter http_request holds all information about the request, e.g. META, GET, POST, COOKIES and FILES...
  3. The parameter http_resposne is used to handle all response things, e.g. status_code, response_content, response_headers, response_cookies...
  4. The handler returns nothing, and all things returned will be discarded, all response things should done by http_response methods.

How to use Middlewares?

By default the wsgi server allows all request methods and doesn't known how to handler OPTIONS request properly. With OptionsHandlerMiddleware, the wsgi server can handle the OPTIONS request and returns allowed methods to client.

from miniweb import Application
from miniweb.server import ThreadingWSGIServer
from miniweb.middlewares import OptionsHandlerMiddleware
from miniweb.sapi import simplejson_api


@simplejson_api
def ping(http_request, http_response):
    return "pong"

@simplejson_api
def echo(http_request, http_response):
    return http_request.POST.get("msg", "")
echo.allowed_methods = ["POST"]

application = Application()
application.router.add_route("/ping", ping)
application.router.add_route("/echo", echo)
application.middlewares = [
    OptionsHandlerMiddleware,
]

server = ThreadingWSGIServer(application, listen="0.0.0.0", port=9132)
server.serve_forever()

Test results:

In [1]: import requests

In [2]: requests.get('http://127.0.0.1:9132/ping').content
Out[2]: b'{"success": true, "result": "pong", "error": {"code": 0, "message": "OK"}}'

In [3]: requests.post('http://127.0.0.1:9132/echo', data={"msg": "hi"}).content
Out[3]: b'{"success": true, "result": "hi", "error": {"code": 0, "message": "OK"}}'

In [4]: requests.options('http://127.0.0.1:9132/ping').headers
Out[4]: {'Date': 'Thu, 03 Mar 2022 08:17:09 GMT', 'Server': 'WSGIServer/0.2 CPython/3.7.9', 'Allow': 'OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT', 'Content-Type': 'text/plain', 'Content-Length': '0'}

In [5]: requests.options('http://127.0.0.1:9132/echo').headers
Out[5]: {'Date': 'Thu, 03 Mar 2022 08:17:18 GMT', 'Server': 'WSGIServer/0.2 CPython/3.7.9', 'Allow': 'OPTIONS, POST', 'Content-Type': 'text/plain', 'Content-Length': '0'}

What is SAPIs (Simple APIs)?

  1. miniweb.sapi decorators help you make a json or jsonp response easily.
  2. Instead of set response content by http_response methods, with miniweb.sapi you just returns response data from the handler function, and the SAPIs decorator will call http_response methods for your. For example:
    # ###################################################################
    # Inside the handle we just returns the core result "pong",
    # but simplejson_api will do the result pack for you,
    # so that you get the final result:
    # {
    #     "success": True,
    #     "result": "pong",
    #     "error": {
    #         "code": 0,
    #         "message": "OK",
    #     }   
    # }
    # ###################################################################
    @simplejson_api
    def ping(http_request:HttpRequest, http_resposne:HttpResponse):
        return "pong"
    
    

Releases

v0.1.5

  • First release.
  • Core dispatch and router dispatch are ready.
  • HttpRequest and HttpResponse are ready.
  • SimpleAPI decorators are eady.
  • @TODO: multipart/form-data content type is NOT supported yet. Done in v0.1.7.

v0.1.6

  • Fix HttpResponse init problem in core.dispatch.
  • Use ensure_ascii=False while doing json.dumps in miniweb.sapi.
  • Add HttpRequest.content_type and HttpRequest.content_length.

v0.1.7

  • Handler PayloadTooLarge exception.
  • Handler LengthRequired exception.
  • Add multipart/form-data content type support.
  • Add file upload support.

v0.1.8

  • Add response file support.
  • Add miniweb.contrib.static_files utils.
  • Add router name support.
  • Add router reverse by the name support.
  • Fix HttpRequest.update_post_data problem.
  • Accept ALL request methods by default.

v0.1.9

  • Add LengthRequired exception handler.
  • Add HttpChunkResponseData response data type and it's handler.
  • Fixed the problem that caused errors when referencing http_request.POST data in GET requests.

v0.1.10

  • Fix problem in python3.7.

v0.1.11

  • Add ThreadingWSGIServer.

v0.1.12

  • Fix wsgi_input.read blocked problem.
  • Add miniweb.middlewares.OptionsHandlerMiddleware.
  • Rename application's global_permitted_methods to global_allowed_methods, to match with the standard header Allow.
  • Set application's default allowed methods to ["OPTIONS", "GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "CONNECT"].

v0.1.13

  • Add miniweb.server.ThreadingWSGIServer.ready event, so you can start the server in the new thread, and wait for the server to start in the main thread, to ensure that the service is ready, then continue to do other things.

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

miniweb-0.1.13.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

miniweb-0.1.13-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file miniweb-0.1.13.tar.gz.

File metadata

  • Download URL: miniweb-0.1.13.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for miniweb-0.1.13.tar.gz
Algorithm Hash digest
SHA256 f3f6c3cd377f6f3a9d4d25f33ace3bc9aea2ad56720335f4567c0c88ab1e9b15
MD5 89f9df86ca41f5dbb8ac92b7dc55dda5
BLAKE2b-256 9c840506f489cf1a173d1a5dffecdd384041944395435088bd2f8c7302931efc

See more details on using hashes here.

File details

Details for the file miniweb-0.1.13-py3-none-any.whl.

File metadata

  • Download URL: miniweb-0.1.13-py3-none-any.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for miniweb-0.1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 0e740bc32f113e7d9549a5f42e065ab962d6d1b0e84d259175142fe1d7b3384d
MD5 b0b271e5972a2082b40a8fb545d5f5f4
BLAKE2b-256 aafcc5814f4a21dd4fa030a6090e5e4f064231f8ca644620f1f7e16ad852ecb0

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