ecdavis / pants

A lightweight framework for writing asynchronous network applications in Python.

Home Page:http://pantspowered.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pants is complete and no longer actively maintained.

Pants is a lightweight framework for writing asynchronous network applications in Python. Pants is simple, fast and elegant.

Pants is available under the Apache License, Version 2.0

Docs

Check out the documentation at pantspowered.org

Install

Pants can be installed using pip:

pip install pants

You can also grab the latest code from the git repository:

git clone git://github.com/ecdavis/pants

Pants requires Python 2.7 - Python 3 is not yet supported.

Examples

Here's an absurdly simple example - an echo server:

from pants import Engine, Server, Stream

class Echo(Stream):
    def on_read(self, data):
        self.write(data)

Server(Echo).listen(4040)
Engine.instance().start()

Want a stupidly fast web server? Got you covered:

from pants.web import Application

app = Application()

@app.route('/')
def hello(request):
    return "Hello, World!"

app.run()

About

A lightweight framework for writing asynchronous network applications in Python.

http://pantspowered.org/

License:Apache License 2.0


Languages

Language:Python 99.4%Language:CSS 0.3%Language:JavaScript 0.2%Language:HTML 0.1%