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.
Create Your django project.
Add easy_api in settings.py
INSTALLED_APPS = [ . . . ‘easy_api’ ]
Create your django app
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.
Migrate your models.
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:
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74a3ee5d948bae1f6f8635b23f633a8f6b5af7916325de7e6cbd6ac6630d5c4c
|
|
| MD5 |
19045a4f70a20823a2b47ad5ec2a2557
|
|
| BLAKE2b-256 |
8bafbd50b5bd33e2ad43512d207015637bf6f7ae91bf814611f3d42176689d48
|