Skip to main content

An easy-to-use python web framework. Inspired by Flask.

Project description

outside

What's this?

An easy-to-use python web framework. Inspired by Flask.

Install

This project is available on pip via the outside-framework name.

pip install outside-framework

Demo

The software is actively being used at billplayz.de

Quickstart

This simple script responds with "Hello World!" to every request.

import outside
http_server = outside.OutsideHTTP(("127.0.0.1",80))

def test(request):
    return outside.protocol_http.Response(
        request = request,
        status_code = 200,
        headers = {},
        content = "Hello World!"
    )
http_server.set_route("/",test)

if (__name__ == "__main__"):
    http_server.run()

Reference

outside.OutsideHTTP

Syntax: outside.OutsideHTTP(host: tuple[ip: string, port: int])
Example: outside.OutsideHTTP(("0.0.0.0",80))

outside.OutsideHTTP.config

key value type default
host (address, port) (string, int) ("0.0.0.0", 80)
backlog_length length int 25
process_timeout seconds int 60
termination_timeout seconds int 5
recv_size bytes int 1024
send_size bytes int 1024
accept_timeout seconds int 0.02
ssl_enabled enabled bool False
ssl_keyfile path string ""
ssl_certfile path string ""
max_body_size_mb megabytes int 250
keep_alive enabled bool True
post_callback callback function or None None
pre_send callback function or None None

outside.OutsideHTTP.set_route()

Syntax: outside.OutsideHTTP.set_route(startswith: string,callback: function)
Example: http_server.set_route("/testroute/",my_function)

outside.OutsideHTTP.remove_route()

Syntax: outside.OutsideHTTP.remove_route(startswith: string)
Example: http_server.remove_route("/testroute/")

outside.OutsideHTTP.set_errorhandler()

Syntax: outside.OutsideHTTP.set_errorhandler(errorcode: int, handler: function)
Example: http_server.set_errorhandler(404,my_function)

outside.OutsideHTTP.remove_errorhandler()

Syntax: outside.OutsideHTTP.remove_errorhandler(errorcode: int)
Example: http_server.remove_errorhandler(404)

outside.OutsideHTTP.terminate()

Syntax: outside.OutsideHTTP.terminate()
Example: http_server.terminate()

outside.OutsideHTTP.run()

Syntax: outside.OutsideHTTP.run()
Example: http_server.run()

outside.protocol_http.Request

You should not construct this as a "user"! (No possible reason to do so)

Syntax: outside.protocol_http.Request(method: string["GET","POST",etc.], headers: dict, content: bytes, version: string, url: string, address: (ip: string, port: int))
Example: outside.protocol_http.Request("GET",{"Accept": "application/json"},b"I'm a client!","HTTP/1.1","/funny_endpoint/index.html",("127.0.0.1",18263))

outside.protocol_http.cookies

http.cookies.SimpleCookie

outside.protocol_http.Response

Syntax: outside.protocol_http.Response(status_code: int, headers: dict, content: Any, cookies: dict)
Example: outside.protocol_http.Response(404,{},"Page not found!")

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

outside-framework-1.4.0.tar.gz (12.7 kB view hashes)

Uploaded Source

Built Distribution

outside_framework-1.4.0-py3-none-any.whl (13.5 kB view hashes)

Uploaded Python 3

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