django-small-view-set 0.2.7__tar.gz → 0.2.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/PKG-INFO +5 -5
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/README.md +2 -2
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/pyproject.toml +3 -3
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/LICENSE +0 -0
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/README.md +0 -0
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/__init__.py +0 -0
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/config.py +0 -0
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/decorators.py +0 -0
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/exceptions.py +0 -0
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/helpers.py +0 -0
- {django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/small_view_set.py +0 -0
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: django-small-view-set
|
3
|
-
Version: 0.2.
|
4
|
-
Summary: A lightweight Django ViewSet alternative with minimal abstraction
|
3
|
+
Version: 0.2.8
|
4
|
+
Summary: A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support
|
5
5
|
Home-page: https://github.com/nateonguitar/django-small-view-set
|
6
6
|
License: MIT
|
7
|
-
Keywords: django,
|
7
|
+
Keywords: django,viewset,view set,api,async,rest api,django async,lightweight
|
8
8
|
Author: Nate Brooks
|
9
9
|
Requires-Python: >=3.8
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -19,9 +19,9 @@ Description-Content-Type: text/markdown
|
|
19
19
|
|
20
20
|
# Django Small View Set
|
21
21
|
|
22
|
-
A
|
22
|
+
A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support.
|
23
23
|
|
24
|
-
|
24
|
+
Designed for clear patterns, minimal magic, and complete control over your API endpoints.
|
25
25
|
|
26
26
|
### Example Usage
|
27
27
|
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Django Small View Set
|
2
2
|
|
3
|
-
A
|
3
|
+
A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support.
|
4
4
|
|
5
|
-
|
5
|
+
Designed for clear patterns, minimal magic, and complete control over your API endpoints.
|
6
6
|
|
7
7
|
### Example Usage
|
8
8
|
|
@@ -4,13 +4,13 @@ build-backend = "poetry.core.masonry.api"
|
|
4
4
|
|
5
5
|
[tool.poetry]
|
6
6
|
name = "django-small-view-set"
|
7
|
-
version = "0.2.
|
8
|
-
description = "A lightweight Django ViewSet alternative with minimal abstraction
|
7
|
+
version = "0.2.8"
|
8
|
+
description = "A lightweight and explicit Django ViewSet alternative with minimal abstraction and full async support"
|
9
9
|
readme = "README.md"
|
10
10
|
authors = ["Nate Brooks"]
|
11
11
|
license = "MIT"
|
12
12
|
repository = "https://github.com/nateonguitar/django-small-view-set"
|
13
|
-
keywords = ["django", "
|
13
|
+
keywords = ["django", "viewset", "view set", "api", "async", "rest api", "django async", "lightweight"]
|
14
14
|
packages = [
|
15
15
|
{ include = "small_view_set", from = "src" }
|
16
16
|
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/decorators.py
RENAMED
File without changes
|
{django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/exceptions.py
RENAMED
File without changes
|
File without changes
|
{django_small_view_set-0.2.7 → django_small_view_set-0.2.8}/src/small_view_set/small_view_set.py
RENAMED
File without changes
|