Skip to main content

Create model based api without any extra code.

Project description

# django-easy-api

Now there is no need to create apis for common CRUD operation for any model. By using django-easy-api its really easy. Kindly follow the below steps for including this library into your project.

  1. Create Your django project.

  2. Add easy_api in settings.py

    INSTALLED_APPS = [ . . . ‘easy_api’ ]

  3. Create your django app

  4. Now in models.py follow create your model by inheriting EasyAPI model from easy_api app.

    from django.db import models from easy_api.models import EasyAPI

    class MyModel(EasyAPI):

    # Your Requried field here.

  5. Migrate your models.

  6. This is the last step. You need to add this model in your app’s urls.py

    from django.urls import path from .models import MyModel

    urlpatterns = [

    path(‘myurl/’, MyModel.as_view()),

    ]

7. That’s it. Now you will have common GET/POST/PUT/DELETE methods on your model. Also you can attach query_params only for id in your url. For example:

http://localhost:8000/myurl/?id=1

8. You can also override get, post, put and delete method according to your need. For example:

from django.db import models from easy_api.models import EasyAPI

class MyModel(EasyAPI):

# Your Requried field here.

def get(self, request):

#Your logic

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_model_api-1.4-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file django_model_api-1.4-py3-none-any.whl.

File metadata

  • Download URL: django_model_api-1.4-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5

File hashes

Hashes for django_model_api-1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 74a3ee5d948bae1f6f8635b23f633a8f6b5af7916325de7e6cbd6ac6630d5c4c
MD5 19045a4f70a20823a2b47ad5ec2a2557
BLAKE2b-256 8bafbd50b5bd33e2ad43512d207015637bf6f7ae91bf814611f3d42176689d48

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page