Skip to main content

REST APIs documented and sensible

Project description

1 Introduction

REST APIs documented and sensible

Build automatically documented REST APIs with the Pyramid framework.

This library is available on the Python package index under the project name rapids:

2 Usage

@rapids.decorators.resource('', None)
class Root(rapids.resources.Base):
    pass


@pyramid.view.view_config(context=Root, rapids='')
def root_view(resource, request):
    return pyramid.httpexceptions.HTTPNotFound()


@rapids.decorators.resource('foo', Root)
class Foo(rapids.resources.Base):
    pass


@pyramid.view.view_defaults(context=Foo, rapids='')
class FooView:
    def __init__(self, resource, request):
        pass

    @pyramid.view.view_config(request_method='GET')
    def _get_view(self):
        return pyramid.httpexceptions.HTTPOk()

    @pyramid.view.view_config(request_method='POST')
    def _post_view(self):
        return pyramid.httpexceptions.HTTPCreated()

3 Hacking

This project makes extensive use of tox, pytest, and GNU Make.

3.1 Development environment

Use following command to create a Python virtual environment with all necessary dependencies:

tox --recreate -e develop

This creates a Python virtual environment in the .tox/develop directory. It can be activated with the following command:

. .tox/develop/bin/activate

3.2 Run test suite

In a Python virtual environment run the following command:

make review

Outside of a Python virtual environment run the following command:

tox --recreate

3.3 Build and package

In a Python virtual environment run the following command:

make package

Outside of a Python virtual environment run the following command:

tox --recreate -e package

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

rapids-0.0.1.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

rapids-0.0.1-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file rapids-0.0.1.tar.gz.

File metadata

  • Download URL: rapids-0.0.1.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for rapids-0.0.1.tar.gz
Algorithm Hash digest
SHA256 a2a98d9a52aea3039603bb822382755ac418bb68612a12404a9d5fedc8d66edf
MD5 545c08c38bfe09c0725a411aa43399ed
BLAKE2b-256 7ff19d14fbd8978e0155562d03e14126e90ac6ac9705c276f4b45fd36a013027

See more details on using hashes here.

File details

Details for the file rapids-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for rapids-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fd614eae1478bea845b357e03473d87e17665c38547ee774b22ddf0c1922c4e0
MD5 fd6870bdcf56b362c720299f9adee721
BLAKE2b-256 e1511c8cbc90cbf1778699d0f9be280c84fac8058dcfc1da20d9976489cbae69

See more details on using hashes here.

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