Skip to main content

REST Framwork for webapp2 & datastore applications

Project description

# restae [![Build Status](https://travis-ci.org/tolsac/restae.svg?branch=master)](https://travis-ci.org/tolsac/restae) [![PyPI version](https://badge.fury.io/py/restae.svg)](https://badge.fury.io/py/restae)

Restae is a framework to build REST APIs within the Google Cloud Platform App Engine. The structure of the framework is highly inspired by Django and Django REST Framework.

Please checkout official documentation to get more information https://restae.readthedocs.io/en/latest/

import webapp2

from google.appengine.ext import ndb

from restae.handlers import APIModelHandler from restae.router import Router from restae.serializers import ModelSerializer

class User(ndb.Model):

email = ndb.StringProperty() first_name = ndb.StringProperty() last_name = ndb.StringProperty()

class UserModelSerializer(ModelSerializer):
class Meta:

model = User fields = ‘__all__’

class Handler(APIModelHandler):

queryset = User.query() serializer_class = UserModelSerializer

router = Router() router.register(‘user’, Handler)

app = webapp2.WSGIApplication(router.urls)

Will produces those endpoints

GET /user/ list action GET /user list action (idem without trailing slash)

GET /user/<user key urlsafe>/ retrieve action GET /user/<user key urlsafe> retrieve action (idem without trailing slash)

POST /user/ create action POST /user create action (idem without trailing slash)

PUT /user/<user key urlsafe>/ update action PUT /user/<user key urlsafe> update action (idem without trailing slash)

PATCH /user/<user key urlsafe>/ partial_update action PATCH /user/<user key urlsafe> partial_update action (idem without trailing slash)

DELETE /user/<user key urlsafe>/ destroy action DELETE /user/<user key urlsafe> destroy action (idem without trailing slash)

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

restae-1.1.5.tar.gz (16.8 kB view details)

Uploaded Source

File details

Details for the file restae-1.1.5.tar.gz.

File metadata

  • Download URL: restae-1.1.5.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/2.7

File hashes

Hashes for restae-1.1.5.tar.gz
Algorithm Hash digest
SHA256 0e5b2b7b7fb7c507599fa3b94ef42888f7064ab0be0c4cd4f74e74370e704078
MD5 4441f2c78136056601c38d5488ae9d33
BLAKE2b-256 0ad4d4e51cdd395298b2ee48d1b63b42b8452fdcf6db6ba89b7126976ced12c6

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