You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,15 @@
8
8
9
9
# Django Easy API Framework
10
10
11
-
### Easy and Fast Django REST framework based on Django-ninja-extra
11
+
### Easy and Fast Django REST framework based on Django-Ninja-Extra
12
12
13
-
-Auto CRUD Async API generation for all django models, configurable via Meta class
14
-
- Domain/Service/Controller base structure for better code organization
15
-
- Base Permission/Response/Exception classes and more to come
16
-
- Pure class based [Django-Ninja](https://github.com/vitalik/django-ninja) APIs, based on[Django-Ninja-extra](https://github.com/eadwinCode/django-ninja-extra)
13
+
- CRUD Async API Generation: Automatic and configurable, inspired by [NextJs-Crud](https://github.com/nestjsx/crud).
14
+
- Domain/Service/Controller Base Structure: for better code organization.
15
+
- Base Permission/Response/Exception Classes: and many handy features to help your API coding easier
16
+
- Pure class based [Django-Ninja](https://github.com/vitalik/django-ninja) APIs: thanks to[Django-Ninja-Extra](https://github.com/eadwinCode/django-ninja-extra)
17
17
18
18
```
19
-
Django-Ninja features:
19
+
Django-Ninja features:
20
20
21
21
Easy: Designed to be easy to use and intuitive.
22
22
FAST execution: Very high performance thanks to Pydantic and async support.
@@ -73,7 +73,6 @@ urlpatterns = [
73
73
path("api_admin/v1/", apis.urls), # <---------- !
74
74
]
75
75
```
76
-
#### Interactive API docs
77
76
Now go to http://127.0.0.1:8000/api_admin/v1/docs
78
77
79
78
You will see the automatic interactive API documentation (provided by Swagger UI).
0 commit comments