Skip to main content

Simple Event-Driven IO for Python

Project description

Thor

CI Coverage Status

About Thor

Thor is yet another Python 3 library for evented IO.

There are many such libraries for Python already available. Thor focuses on making it easy to build high-performance HTTP intermediaries like proxies, load balancers, content transformation engines and service aggregators. Of course, you can use it just as a client or server too.

It aims to be as fast as possible, to implement the protocols correctly, and to be simple. You can help meet these goals by contributing issues, patches and tests.

Thor’s EventEmitter API is influenced by^H^H^H copied from NodeJS; if you’re familiar with Node, it shouldn’t be too hard to use Thor. However, Thor is nothing like Twisted; this is considered a feature.

Currently, Thor has an event loop as well as TCP, UDP and HTTP APIs (client and server). New APIs (e.g., DNS) and capabilities should be arriving soon, along with a framework for intermediation.

Requirements

Thor just requires a current version of Python.

Currently, it will run on most Posix platforms; specifically, those that offer one of poll, epoll or kqueue.

Installation

Using pip:

pip install thor

On some operating systems, that might be pip3. Otherwise, download a tarball and install using:

python setup.py install

Using Thor

The documentation is a good starting point; see also the docstrings for the various modules, as well as the tests, to give an idea of how to use Thor.

For example, a very simple HTTP server looks like this:

import thor, thor.http
def test_handler(exch):
    @thor.events.on(exch)
    def request_start(*args):
        exch.response_start(200, "OK", [('Content-Type', 'text/plain')])
        exch.response_body('Hello, world!')
        exch.response_done([])

if __name__ == "__main__":
    demo_server = thor.http.HttpServer('127.0.0.1', 8000)
    demo_server.on('exchange', test_handler)
    thor.run()

Support and Contributions

See Thor's GitHub to give feedback, view and report issues, and contribute code.

All helpful input is welcome, particularly code contributions via a pull request (with test cases).

Why Thor?

Thor is not only “a hammer-wielding god associated with thunder, lightning, storms, oak trees, strength, destruction, fertility, healing, and the protection of mankind”, he’s also my Norwegian Forest Cat.

Thor (the software program) grew out of nbhttp, which itself came from earlier work on evented Python in redbot.

Thor (the cat) now rules our house with a firm but benevolent paw. He gets sick if we give him any milk, though.

Thor, the cat

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

thor-0.14.0.tar.gz (58.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

thor-0.14.0-py3-none-any.whl (40.9 kB view details)

Uploaded Python 3

File details

Details for the file thor-0.14.0.tar.gz.

File metadata

  • Download URL: thor-0.14.0.tar.gz
  • Upload date:
  • Size: 58.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thor-0.14.0.tar.gz
Algorithm Hash digest
SHA256 b2826bd1c63766fcf99236e6b67c30f9988e28462433052dee3d4b9eac30e0c1
MD5 5a10fa8a210bd61e3670674a5c36ddcf
BLAKE2b-256 861154fb30ddba81a7f87ad4afe3914c20b4a1cecb53696ae2a1535157a4ac2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for thor-0.14.0.tar.gz:

Publisher: publish.yml on mnot/thor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file thor-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: thor-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thor-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2661aed8caec60a7cbb6f8d74384b8ca3360f84cdffaa0be5750dc25604b7ff9
MD5 3e89fe6f9b3e80e72a4e459dbdc3eb15
BLAKE2b-256 0459acb8aefe7a4a108db1b8a495b65b599b27dd17c306b735a35d944e2533c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for thor-0.14.0-py3-none-any.whl:

Publisher: publish.yml on mnot/thor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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