Skip to main content

Netius System

Project description

Series of network related libraries for the rapid creation of non blocking async server and clients. The aim of this project is to create a platform for creation of customized servers and clients for specific and pre-defined purposes using simple inheritance techniques.

Performance is considered to be one of the main priorities of the project as it should be possible to replace a native code stack with netius equivalents. PyPy should provide the extra speed required for these kind of (speed savy) use cases.

Installation

pip install netius

Usage

WSGI Server

import netius.servers

def app(environ, start_response):
    status = "200 OK"
    contents = "Hello World"
    content_l = len(contents)
    headers = (
        ("Content-Length", content_l),
        ("Content-type", "text/plain"),
        ("Connection", "keep-alive")
    )
    start_response(status, headers)
    yield contents

server = netius.servers.WSGIServer(app = app)
server.serve(port = 8080)

More

For more information consult the website.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

netius-1.3.13.zip (238.0 kB view hashes)

Uploaded Source

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