Skip to main content

API Star tools to create CRUD resources.

Project description

build status coverage version

Version:

0.2.2

Status:

Production/Stable

Author:

José Antonio Perdiguero López

API Star tools to create CRUD resources.

Features

The resources are classes with a default implementation for methods:

  • create: Create a new element for this resource.

  • retrieve: Retrieve an element of this resource.

  • update: Update (partially or fully) an element of this resource.

  • delete: Delete an element of this resource.

  • list: List resource collection.

  • drop: Drop resource collection.


The routes for these methods are:

Method

Verb

URL

create

POST

/

retrieve

GET

/{element_id}/

update

PUT

/{element_id}/

delete

DELETE

/{element_id}/

list

GET

/

drop

DELETE

/

Quick start

Install API star CRUD:

pip install apistar-crud

Create a model for your resource:

# Example using SQL Alchemy

class PuppyModel(Base):
    __tablename__ = "Puppy"

    id = Column(Integer, primary_key=True)
    name = Column(String)

Create an input type and output_type for your resource:

class PuppyInputType(types.Type):
    name = validators.String()

class PuppyOutputType(types.Type):
    id = validators.Integer()
    name = validators.String()

Now create your resource:

from apistar_crud.sqlalchemy import Resource

class PuppyResource(metaclass=Resource):
    model = PuppyModel
    input_type = PuppyInputType
    output_type = PuppyOutputType
    methods = ('create', 'retrieve', 'update', 'delete', 'list', 'drop')

The resource generates his own routes, so you can add it to your main routes list:

from apistar import Include

routes = [
    Include('/puppy/', PuppyResource.routes, namespace='puppy'),
]

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

apistar-crud-0.2.2.tar.gz (17.4 kB view hashes)

Uploaded Source

Built Distribution

apistar_crud-0.2.2-py3-none-any.whl (20.7 kB view hashes)

Uploaded Python 3

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