sanic-security 1.16.11__tar.gz → 1.17.0__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.
Files changed (22) hide show
  1. {sanic_security-1.16.11 → sanic_security-1.17.0}/LICENSE +21 -21
  2. {sanic_security-1.16.11/sanic_security.egg-info → sanic_security-1.17.0}/PKG-INFO +672 -672
  3. {sanic_security-1.16.11 → sanic_security-1.17.0}/README.md +639 -639
  4. {sanic_security-1.16.11 → sanic_security-1.17.0}/pyproject.toml +31 -31
  5. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/authentication.py +379 -362
  6. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/authorization.py +240 -240
  7. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/configuration.py +125 -125
  8. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/exceptions.py +164 -216
  9. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/models.py +721 -701
  10. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/oauth.py +242 -241
  11. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/test/server.py +368 -368
  12. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/test/tests.py +547 -547
  13. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/utils.py +121 -121
  14. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/verification.py +253 -249
  15. {sanic_security-1.16.11 → sanic_security-1.17.0/sanic_security.egg-info}/PKG-INFO +672 -672
  16. {sanic_security-1.16.11 → sanic_security-1.17.0}/setup.cfg +4 -4
  17. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/__init__.py +0 -0
  18. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security/test/__init__.py +0 -0
  19. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security.egg-info/SOURCES.txt +0 -0
  20. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security.egg-info/dependency_links.txt +0 -0
  21. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security.egg-info/requires.txt +0 -0
  22. {sanic_security-1.16.11 → sanic_security-1.17.0}/sanic_security.egg-info/top_level.txt +0 -0
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 Nicholas Aidan Stewart
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Nicholas Aidan Stewart
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.