Skip to main content

A microframework for building RESTful web services

Project description

build-status-img

Rhino is a python microframework for building RESTful web services.

Installation

From pypi:

$ pip install rhino

From a git checkout:

$ git clone https://github.com/trendels/rhino.git
$ cd rhino
$ python setup.py install

To run the test suite, clone the repository as shown above, and run:

$ pip install -r requirements.txt
$ make test

Minimal “Hello World” example

from rhino import Mapper, get

@get
def hello(request):
    return "Hello, world!"

app = Mapper()
app.add('/', hello)
app.start_server()

Documentation

The online documentation can be found at https://trendels.github.io/rhino/

Bugs

Please report bugs using the github issue tracker.

License

Rhino is licensed unter the MIT License. See the included file LICENSE for details.

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

Rhino-0.0.2.tar.gz (48.9 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