Skip to main content

A simple rest api generator for django based on models

Project description

easyapi-django

A simple rest api generator for django based on models

API in 4 easy steps!

Install

pip install easyapi-django

Add middleware in Django settings

MIDDLEWARE = [
    ...
    'easyapi.ExceptionMiddleware',
]

Create Resource based on your model

from easyapi import BaseResource

from your_models import YOUR_DJANGO_MODEL

class ResourceName(BaseResource):
    model = YOUR_DJANGO_MODEL

Add to your routes url

from easyapi.routes import get_routes

from resourcefile import ResourceName

endpoints = {
    'endpointname(.\*)$': ResourceName,
}
routes = get_routes(endpoints)

urlpatterns = [
    ...
] + routes

Your api with GET, PUT, POST and DELETE is ready. Start using it

How easy and cool is that???

FREE Bonus features

class ResourceName(BaseResource):
    model = YOUR_DJANGO_MODEL

    # return list results normalized
    normalize_list = True

    # define methods allowed
    allowed_methods = ['get', 'patch', 'post', 'delete']

    # define fields returned in list, if not define all fields are returned
    list_fields = ['field1', 'field2', 'field3']

    # return normalized fields for related models in list
    list_related_fields = {'field1': ['related_field1', 'related_field2']}

    # define fields that are allowed to be filtered
    filter_fields = [
        'field1',
        'field2'
    ]

    # define fields that are allowed to be searched
    search_fields = ['field1', 'field2', 'field3']

    # define fields that are allowed to be used in a order by
    order_fields = ['field1', 'field2']

    # define fields allowed to be updated
    update_fields = [
        'field1', 'field2'
    ]

    # define fields returned in a specific object
    edit_fields = [
        'field1', 'field2', 'field3', 'field3'
    ]

    # define operator for searches
    search_operator = 'icontains'

Count

By default in list calls, the api does not return the total of objects due to slow count in innodb tables used in MySql, but, it is very easy to get count objects simple add

?count=true

at your request. The api will return the total count of objects and will consider whatever filter or search applied

{
    count: 90
}

Search

To search you can use any field defined above in search_fields. The search will be applied in all fields defined using OR. By default all searches are made using icontains. You can change it for any allowed Django search operator.

?search=value

To change the search operator define it in you Resource Class

class ResourceName(BaseResource):
    model = YOUR_DJANGO_MODEL

    search_operator = 'icontains'

Filter

To filter just use querystrings. The filter will only be applied in defined fields above in filter_fields.

?field_name=value
?field_name__lte=value
?field_name__startswith=value

you can filter using the following modifiers

__isnull|__gte|__lte|__lt|__gt|__startswith

You can combine filters, search and count in the same get. You can search and filter in related models/fields too.

Pagination

You have a free pagination system using easyapi. The default number of results is 25 and the default order uses id. You can change this values per Resource.

class ResourceName(BaseResource):
    model = YOUR_DJANGO_MODEL

    limit = 25
    order_by = 'id'

If you set you limit to 0, all records will be returned.

To paginate just add to your call

?page=value

you can chage the default values dinamically too:

?page=value&limit=value&order_by=(field_name|-field_name)

Waittttt, there is more FREE Bonus

You can add relative endpoints very easy, just add a new route and the funcion that you want to call with the allowed methods. In the examples below we are creating 2 endpoints routes: accept and refuse that will call 2 functions (accept and refuse) that should return a response.

class ResourceName(BaseResource):
    model = YOUR_DJANGO_MODEL

    routes = [
            {
                'path': r'(\d*)/accept$',
                'func': 'accept',
                'allowed_methods': ['patch']
            },
            {
                'path': r'(\d*)/refuse$',
                'func': 'refuse',
                'allowed_methods': ['delete']
            },
    ]

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easyapi_django-0.0.45.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

easyapi_django-0.0.45-py3-none-any.whl (24.9 kB view details)

Uploaded Python 3

File details

Details for the file easyapi_django-0.0.45.tar.gz.

File metadata

  • Download URL: easyapi_django-0.0.45.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for easyapi_django-0.0.45.tar.gz
Algorithm Hash digest
SHA256 4f14f87a6c907e5e508e160c0dc3cfcb4974e46047938121e37e1d8cf164fbf5
MD5 5e1e174a2407961f8a72de73a3088fe2
BLAKE2b-256 7631f276927c9ae74d5b017d8be49b75681ad8d5fc4cfc22f114a0373767e3dc

See more details on using hashes here.

File details

Details for the file easyapi_django-0.0.45-py3-none-any.whl.

File metadata

File hashes

Hashes for easyapi_django-0.0.45-py3-none-any.whl
Algorithm Hash digest
SHA256 b48d48163a8b8663c8fd292ed168ad2f62b6ec7b1c093a4d46193e354d7f77b8
MD5 822357d8e1a1f157d8f8a0ae06c70fc2
BLAKE2b-256 fe693f9830a6dc214a5ce401981759e4a35a62d895d5ddbaded7be2c44672e4f

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