django-bolt 0.1.0__cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
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.
Potentially problematic release.
This version of django-bolt might be problematic. Click here for more details.
- django_bolt/__init__.py +147 -0
- django_bolt/_core.abi3.so +0 -0
- django_bolt/admin/__init__.py +25 -0
- django_bolt/admin/admin_detection.py +179 -0
- django_bolt/admin/asgi_bridge.py +267 -0
- django_bolt/admin/routes.py +91 -0
- django_bolt/admin/static.py +155 -0
- django_bolt/admin/static_routes.py +111 -0
- django_bolt/api.py +1011 -0
- django_bolt/apps.py +7 -0
- django_bolt/async_collector.py +228 -0
- django_bolt/auth/README.md +464 -0
- django_bolt/auth/REVOCATION_EXAMPLE.md +391 -0
- django_bolt/auth/__init__.py +84 -0
- django_bolt/auth/backends.py +236 -0
- django_bolt/auth/guards.py +224 -0
- django_bolt/auth/jwt_utils.py +212 -0
- django_bolt/auth/revocation.py +286 -0
- django_bolt/auth/token.py +335 -0
- django_bolt/binding.py +363 -0
- django_bolt/bootstrap.py +77 -0
- django_bolt/cli.py +133 -0
- django_bolt/compression.py +104 -0
- django_bolt/decorators.py +159 -0
- django_bolt/dependencies.py +128 -0
- django_bolt/error_handlers.py +305 -0
- django_bolt/exceptions.py +294 -0
- django_bolt/health.py +129 -0
- django_bolt/logging/__init__.py +6 -0
- django_bolt/logging/config.py +357 -0
- django_bolt/logging/middleware.py +296 -0
- django_bolt/management/__init__.py +1 -0
- django_bolt/management/commands/__init__.py +0 -0
- django_bolt/management/commands/runbolt.py +427 -0
- django_bolt/middleware/__init__.py +32 -0
- django_bolt/middleware/compiler.py +131 -0
- django_bolt/middleware/middleware.py +247 -0
- django_bolt/openapi/__init__.py +23 -0
- django_bolt/openapi/config.py +196 -0
- django_bolt/openapi/plugins.py +439 -0
- django_bolt/openapi/routes.py +152 -0
- django_bolt/openapi/schema_generator.py +581 -0
- django_bolt/openapi/spec/__init__.py +68 -0
- django_bolt/openapi/spec/base.py +74 -0
- django_bolt/openapi/spec/callback.py +24 -0
- django_bolt/openapi/spec/components.py +72 -0
- django_bolt/openapi/spec/contact.py +21 -0
- django_bolt/openapi/spec/discriminator.py +25 -0
- django_bolt/openapi/spec/encoding.py +67 -0
- django_bolt/openapi/spec/enums.py +41 -0
- django_bolt/openapi/spec/example.py +36 -0
- django_bolt/openapi/spec/external_documentation.py +21 -0
- django_bolt/openapi/spec/header.py +132 -0
- django_bolt/openapi/spec/info.py +50 -0
- django_bolt/openapi/spec/license.py +28 -0
- django_bolt/openapi/spec/link.py +66 -0
- django_bolt/openapi/spec/media_type.py +51 -0
- django_bolt/openapi/spec/oauth_flow.py +36 -0
- django_bolt/openapi/spec/oauth_flows.py +28 -0
- django_bolt/openapi/spec/open_api.py +87 -0
- django_bolt/openapi/spec/operation.py +105 -0
- django_bolt/openapi/spec/parameter.py +147 -0
- django_bolt/openapi/spec/path_item.py +78 -0
- django_bolt/openapi/spec/paths.py +27 -0
- django_bolt/openapi/spec/reference.py +38 -0
- django_bolt/openapi/spec/request_body.py +38 -0
- django_bolt/openapi/spec/response.py +48 -0
- django_bolt/openapi/spec/responses.py +44 -0
- django_bolt/openapi/spec/schema.py +678 -0
- django_bolt/openapi/spec/security_requirement.py +28 -0
- django_bolt/openapi/spec/security_scheme.py +69 -0
- django_bolt/openapi/spec/server.py +34 -0
- django_bolt/openapi/spec/server_variable.py +32 -0
- django_bolt/openapi/spec/tag.py +32 -0
- django_bolt/openapi/spec/xml.py +44 -0
- django_bolt/pagination.py +669 -0
- django_bolt/param_functions.py +49 -0
- django_bolt/params.py +337 -0
- django_bolt/request_parsing.py +128 -0
- django_bolt/responses.py +214 -0
- django_bolt/router.py +48 -0
- django_bolt/serialization.py +193 -0
- django_bolt/status_codes.py +321 -0
- django_bolt/testing/__init__.py +10 -0
- django_bolt/testing/client.py +274 -0
- django_bolt/testing/helpers.py +93 -0
- django_bolt/tests/__init__.py +0 -0
- django_bolt/tests/admin_tests/__init__.py +1 -0
- django_bolt/tests/admin_tests/conftest.py +6 -0
- django_bolt/tests/admin_tests/test_admin_with_django.py +278 -0
- django_bolt/tests/admin_tests/urls.py +9 -0
- django_bolt/tests/cbv/__init__.py +0 -0
- django_bolt/tests/cbv/test_class_views.py +570 -0
- django_bolt/tests/cbv/test_class_views_django_orm.py +703 -0
- django_bolt/tests/cbv/test_class_views_features.py +1173 -0
- django_bolt/tests/cbv/test_class_views_with_client.py +622 -0
- django_bolt/tests/conftest.py +165 -0
- django_bolt/tests/test_action_decorator.py +399 -0
- django_bolt/tests/test_auth_secret_key.py +83 -0
- django_bolt/tests/test_decorator_syntax.py +159 -0
- django_bolt/tests/test_error_handling.py +481 -0
- django_bolt/tests/test_file_response.py +192 -0
- django_bolt/tests/test_global_cors.py +172 -0
- django_bolt/tests/test_guards_auth.py +441 -0
- django_bolt/tests/test_guards_integration.py +303 -0
- django_bolt/tests/test_health.py +283 -0
- django_bolt/tests/test_integration_validation.py +400 -0
- django_bolt/tests/test_json_validation.py +536 -0
- django_bolt/tests/test_jwt_auth.py +327 -0
- django_bolt/tests/test_jwt_token.py +458 -0
- django_bolt/tests/test_logging.py +837 -0
- django_bolt/tests/test_logging_merge.py +419 -0
- django_bolt/tests/test_middleware.py +492 -0
- django_bolt/tests/test_middleware_server.py +230 -0
- django_bolt/tests/test_model_viewset.py +323 -0
- django_bolt/tests/test_models.py +24 -0
- django_bolt/tests/test_pagination.py +1258 -0
- django_bolt/tests/test_parameter_validation.py +178 -0
- django_bolt/tests/test_syntax.py +626 -0
- django_bolt/tests/test_testing_utilities.py +163 -0
- django_bolt/tests/test_testing_utilities_simple.py +123 -0
- django_bolt/tests/test_viewset_unified.py +346 -0
- django_bolt/typing.py +273 -0
- django_bolt/views.py +1110 -0
- django_bolt-0.1.0.dist-info/METADATA +629 -0
- django_bolt-0.1.0.dist-info/RECORD +128 -0
- django_bolt-0.1.0.dist-info/WHEEL +4 -0
- django_bolt-0.1.0.dist-info/entry_points.txt +2 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
django_bolt-0.1.0.dist-info/METADATA,sha256=fvduzqtGufT-da5HeTnOPS3koMJVvZm0SwinaBvHx1c,20515
|
|
2
|
+
django_bolt-0.1.0.dist-info/WHEEL,sha256=U7qF8PU9HKkwj3KhjqFGvey2jq5bwDjAOESvZfASebE,128
|
|
3
|
+
django_bolt-0.1.0.dist-info/entry_points.txt,sha256=cUEGAdiOY6BryNhsgOS_50AONPPHajI3yvhqr56ZiaU,51
|
|
4
|
+
django_bolt/__init__.py,sha256=YoB7SXrPRFNTQRJIAAPLseHOr42VDtyQ7UnPvZuiunQ,2904
|
|
5
|
+
django_bolt/_core.abi3.so,sha256=XJhZZoSXzd209dSB378ikK30sBSrG7on4ZJ0-q1Z2Ao,11801456
|
|
6
|
+
django_bolt/admin/__init__.py,sha256=v8faq0s3ylvGMXIO2CpuS87PvmI1HBIuX1iH5lVjFxo,576
|
|
7
|
+
django_bolt/admin/admin_detection.py,sha256=fhv0D7qO9QFw2ZP4DSDShfbxskXaXVUF8m1ru-VKQGU,5646
|
|
8
|
+
django_bolt/admin/asgi_bridge.py,sha256=kfzNL3Krt7epBjcO3zdvuTqqxuUUbb9MwNefhanCn6o,8763
|
|
9
|
+
django_bolt/admin/routes.py,sha256=GQNDW7_crPiLULaTTteN2nJGB2R8ym4-Q9m3ATGCjB0,3144
|
|
10
|
+
django_bolt/admin/static.py,sha256=BRVFg0tssbu1zDU_HQ6I1VehkggTuLF3C_iSx9YDNGg,4537
|
|
11
|
+
django_bolt/admin/static_routes.py,sha256=j9cYgK3e1MeB7Z7vvTDSvvlWdphHM2KZKSH9yVzHDEc,3699
|
|
12
|
+
django_bolt/api.py,sha256=xV6xVaIqp3o_mvuehi-dyjnlUydiJPR8LJHgX1QqmUQ,44890
|
|
13
|
+
django_bolt/apps.py,sha256=T-M3N76ahOxZAg5D0Yf-aERNyDLfDo0tbNkTmEuvfds,186
|
|
14
|
+
django_bolt/async_collector.py,sha256=vFtVi_Wi_lGA23cVV3vESR1XmHgHFCwvlp0fa4Tjl3E,7522
|
|
15
|
+
django_bolt/auth/README.md,sha256=arRXGoNsHTrOsAB5xxkswi2A_Luf_y7O42gm06GcDWo,16118
|
|
16
|
+
django_bolt/auth/REVOCATION_EXAMPLE.md,sha256=1LOxnfCBRJkF8KPVrYM0sX4bRZJneyao7TI2-gVvonM,10665
|
|
17
|
+
django_bolt/auth/__init__.py,sha256=xGJA6mvF3kJMcF6mmgpI1ceFpAfOC8vme3GAs0H6GoY,1796
|
|
18
|
+
django_bolt/auth/backends.py,sha256=fcvENO0Poaf2YYdxIj1hEX-js4W5EFLiQFSTwrHY8sQ,7709
|
|
19
|
+
django_bolt/auth/guards.py,sha256=R59MNwJ6Idb6FBUKiOUJyPQEDgunOlInx8OknGAYr38,6368
|
|
20
|
+
django_bolt/auth/jwt_utils.py,sha256=agDrT0wLPFywcOZKhYiK07_yt7jxfRIT-nVw4FGsH2U,6307
|
|
21
|
+
django_bolt/auth/revocation.py,sha256=HyqL4Ac26MJ1FvlFySL6JAT9AJHGuhm5-9sntSvdg50,8388
|
|
22
|
+
django_bolt/auth/token.py,sha256=POeXB1ATOZhF_KhLhGj2SctzLgtR47hcGHqJa7LiEQM,11114
|
|
23
|
+
django_bolt/binding.py,sha256=Svp6dVr6ORZY3ni3jmkQlFYocODlabXDvV7TEen1A2A,12497
|
|
24
|
+
django_bolt/bootstrap.py,sha256=KYPtjGSihDMCbr3m0tY6a7TxkRaCpdCUGfN6LR1k1ag,2930
|
|
25
|
+
django_bolt/cli.py,sha256=V0qm7Yx8O6sEM-73YBXXxY5EVA3GEhLwLkC9EXAzxdM,4514
|
|
26
|
+
django_bolt/compression.py,sha256=IVvILZjrBOgvd12nVtxNL6nuwxFRKfZ7BJ1WfkPJKsI,3921
|
|
27
|
+
django_bolt/decorators.py,sha256=Tu0D90MxBU8F7pM77FO_Z86OOv1YVfCi0CM6z52_tF4,6029
|
|
28
|
+
django_bolt/dependencies.py,sha256=q9v2lO-rcvV2VP3RDWakYIP8G3mcvGQSrN4rO7hWgmk,4018
|
|
29
|
+
django_bolt/error_handlers.py,sha256=p0ZPnEPODhxhaX_CYYsm8XBxi30mr-iZ4PAYs6cSZVE,9713
|
|
30
|
+
django_bolt/exceptions.py,sha256=aj7RoAM41oykEbhqPX5JhtCFxy8fguqvWtds-UP772M,8529
|
|
31
|
+
django_bolt/health.py,sha256=9OGecr_wjLxHUcstxHCp2td1nnWPQq-bFH-bze9CM7A,3227
|
|
32
|
+
django_bolt/logging/__init__.py,sha256=nWj1F2INuaDYn9r9eTSECTZWN9f97iHtVErru1KPv84,224
|
|
33
|
+
django_bolt/logging/config.py,sha256=9F2LK0wJ8h8ztNpUzTLcfgySttMjauX_mcRjr8dF4ts,11106
|
|
34
|
+
django_bolt/logging/middleware.py,sha256=MNJH_8lhOOd8y2ipUVg9gp9Ggjo_zUi5PJ9Pk3Go1jA,9761
|
|
35
|
+
django_bolt/management/__init__.py,sha256=Te3hV1nnb-1kLopJWtwvV1WtUoi5wqpY5HfEc8qytf4,37
|
|
36
|
+
django_bolt/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
django_bolt/management/commands/runbolt.py,sha256=qPQmi8gjKrAkacApJGQKXkkw3ymDCBngs2glfdrr9PA,17420
|
|
38
|
+
django_bolt/middleware/__init__.py,sha256=WYA2OSD5u28N0tVmzpukJiGeYYrPWDVOLlXWDPPKG5I,576
|
|
39
|
+
django_bolt/middleware/compiler.py,sha256=UuLDR84VK4NRbzxFMafILx_9xAsmLndSdcpK39P6uyQ,4635
|
|
40
|
+
django_bolt/middleware/middleware.py,sha256=WTwd2yHUc0POg0TimAeq8ZALqMyE1n66Vt1XuLhzVbY,7866
|
|
41
|
+
django_bolt/openapi/__init__.py,sha256=oGPA1gEpnsnOYmElbhC90KwhbBv1N43ALeIKN5EUm8g,549
|
|
42
|
+
django_bolt/openapi/config.py,sha256=RZUHYp6uunUr0FkZTOpl1OLy4AkygMUfzOXwRWIc0ks,6034
|
|
43
|
+
django_bolt/openapi/plugins.py,sha256=qU4JNgKES61H57i9-efL9qzxBXL_tVb_tdkjGDNSmI8,14867
|
|
44
|
+
django_bolt/openapi/routes.py,sha256=o5kphColUbluR9dJuXqnAvhQzY7cAUNelFirKe5dFaM,5895
|
|
45
|
+
django_bolt/openapi/schema_generator.py,sha256=0rgkK9-gRXr1HbOvwIMUpASQDVDD0mBht5mruYdq0cU,19887
|
|
46
|
+
django_bolt/openapi/spec/__init__.py,sha256=hdBBN5GQFGS4aJF8PcBw6XSCuuZ3B4vUQWmnphs3-ik,1691
|
|
47
|
+
django_bolt/openapi/spec/base.py,sha256=8WhD4VUXFCLlkq52z0HZUCOChhaBksTOB1Pzq8F_Z0o,2344
|
|
48
|
+
django_bolt/openapi/spec/callback.py,sha256=ytKgJYGZCNpGs0n6Mo8XxYp6LISMofb5h4dbmtcco78,913
|
|
49
|
+
django_bolt/openapi/spec/components.py,sha256=jZSHSt1IHNP0JGZX8ruJZVGya6m6uhXGDEzSTjK6ITk,2707
|
|
50
|
+
django_bolt/openapi/spec/contact.py,sha256=tbP6Jt0BPWqNfLW4pOOjSY8QnJKAZ0B3g-NLYyIrtqI,571
|
|
51
|
+
django_bolt/openapi/spec/discriminator.py,sha256=QE2yWMFUAaOq3A6Tysq9s2RxgnKr0eqFRwsC_qASvDU,929
|
|
52
|
+
django_bolt/openapi/spec/encoding.py,sha256=7QDOP8EkFkpTmFDDhGc9UJqcTIvMmm58ZAYAI_NW80I,3227
|
|
53
|
+
django_bolt/openapi/spec/enums.py,sha256=zAXH5BGqUyLtHyErOeHdlFfjqqt4Ig3CIOpz2mv3v3o,996
|
|
54
|
+
django_bolt/openapi/spec/example.py,sha256=0SXU7hiuJZY2tqAd0kimvnQ8ZOZhTRD9SuLy_wmSKKY,1287
|
|
55
|
+
django_bolt/openapi/spec/external_documentation.py,sha256=mMDJUXs99g8QpYOc1l5Tz19SXnfRC7o817BOqFiaMok,593
|
|
56
|
+
django_bolt/openapi/spec/header.py,sha256=m997Le33RvfUophTtIh4aCsHupft2SJTDP8_ln7YVgE,6014
|
|
57
|
+
django_bolt/openapi/spec/info.py,sha256=C_eeeKJAtXdh7sPbdHczdHA3XNgn4T1UChoFwl7UdFA,1350
|
|
58
|
+
django_bolt/openapi/spec/license.py,sha256=twLgG-J4cVN7YalblFdsBoykMxK-JWXPmN6ClE3t1O0,757
|
|
59
|
+
django_bolt/openapi/spec/link.py,sha256=8q_960QAX5xlL2j3RjjCtYzX5mhaFdtO5e-DH0HkLyY,2834
|
|
60
|
+
django_bolt/openapi/spec/media_type.py,sha256=W4ibMxvun1GN5bIfxYpNIhLDmnRlvoxsxl-1mY_cICY,1777
|
|
61
|
+
django_bolt/openapi/spec/oauth_flow.py,sha256=6v8atgdKlTHEJZrEqIPGPTkbCBpCgTygEST9W-s83D0,1174
|
|
62
|
+
django_bolt/openapi/spec/oauth_flows.py,sha256=XrgDRoKfw6mg2MOUIjN7xYVpUCchifTx3zMFp4KjNK0,855
|
|
63
|
+
django_bolt/openapi/spec/open_api.py,sha256=q_KFDYg18hNQmbw3QRxN84aSOCtDdToQCIMD_FllCi8,3836
|
|
64
|
+
django_bolt/openapi/spec/operation.py,sha256=uVoYXAFUPJv6zpHMb7KFp5MTH_Z0WbS2PRTp0U9UF-U,4653
|
|
65
|
+
django_bolt/openapi/spec/parameter.py,sha256=5VZR65FtWZBdWHVaH1cXDjutOTBvbrfTlLgeq52ul9Y,6445
|
|
66
|
+
django_bolt/openapi/spec/path_item.py,sha256=VvDHTKbMOA_XJj5CCL7iD61TtN5fFfi20hRY_4AAcFo,3140
|
|
67
|
+
django_bolt/openapi/spec/paths.py,sha256=IjuncUk1GVTxfTothzWyHhnvn2cR1w9OtDnVAOY4tBI,1238
|
|
68
|
+
django_bolt/openapi/spec/reference.py,sha256=m0ES8UqPATYL5O7RoxhtI7sso7oWg64NRbnWg4mCrOY,1330
|
|
69
|
+
django_bolt/openapi/spec/request_body.py,sha256=RSGL6yN60JU12ZKxj70uaRilCsEhDioLkoAbzVRxLGE,1053
|
|
70
|
+
django_bolt/openapi/spec/response.py,sha256=6zqat0DQ5tAzvziL3PkoDARj-4imCbqnrJGAldm3rL4,1749
|
|
71
|
+
django_bolt/openapi/spec/responses.py,sha256=-aWgoimM382M027GQODjKj-_XZE8l-OnTCp8YPpShnk,2319
|
|
72
|
+
django_bolt/openapi/spec/schema.py,sha256=SAjaSdb-avKKSC7EpLgEeYwt9BUdLD4cya3LpXeA0uU,36107
|
|
73
|
+
django_bolt/openapi/spec/security_requirement.py,sha256=6CliIZ15IljyhV_W8tf6_ZPWV3o7qPI8K2vVIMagNnk,1673
|
|
74
|
+
django_bolt/openapi/spec/security_scheme.py,sha256=968T1HeHKqHqLGjT_5EFDBHExvJ0r2h66Pv2Um2kH6Q,2648
|
|
75
|
+
django_bolt/openapi/spec/server.py,sha256=3dBanQX0vDn0rncdiXoK8T8bIgs03OwvvZFreE_MmoE,1035
|
|
76
|
+
django_bolt/openapi/spec/server_variable.py,sha256=1ixZN_0Qensdf3WWHDs_eLekfL9KVpp9OztswHAoXQg,1150
|
|
77
|
+
django_bolt/openapi/spec/tag.py,sha256=Uif64UadCnVgOpNk1In06YDe3QQO_nCwQDjuIDRwhIA,881
|
|
78
|
+
django_bolt/openapi/spec/xml.py,sha256=XBt7FqwucdTs-hiNNJgY5cK-MepZWygB7LAncjc5cV4,1681
|
|
79
|
+
django_bolt/pagination.py,sha256=2rRc1RxsYF22s6OH96yXSUuVdrH3NnUeFm_ijrQ2--8,21790
|
|
80
|
+
django_bolt/param_functions.py,sha256=6UF0cn4yUe6CEpNWfu5w69IZNVB1BfRsZzgQMSykXHg,1071
|
|
81
|
+
django_bolt/params.py,sha256=IXyMTrQygzbZvZFF5r2H6YLW8-Ee95ZeW0RqJWVI4oo,8034
|
|
82
|
+
django_bolt/request_parsing.py,sha256=KpCKDZuCL3xXmbL5sogXi71IGLR05Iv9HqmE1p4OFE4,4690
|
|
83
|
+
django_bolt/responses.py,sha256=4DfYpCO6BQUK18ari9t876GYP7t3tEl8GT78IqJhKoI,7017
|
|
84
|
+
django_bolt/router.py,sha256=P3dvTj5MnPXhFleoxfzBwN1UxpE28BR0G9mojLFch_A,1484
|
|
85
|
+
django_bolt/serialization.py,sha256=L0tPNUiHzCymzWQxIJdmwR6yFypGb4yYE-sh8rgvRMY,8639
|
|
86
|
+
django_bolt/status_codes.py,sha256=50QURFI-91jXvogWQL-QQSGP0ro_Ahhq2gt5FV3SRPQ,9065
|
|
87
|
+
django_bolt/testing/__init__.py,sha256=emaaEooTH8FqxvMZY1CUlyQTuE_VnKsssopyDoKHLSI,247
|
|
88
|
+
django_bolt/testing/client.py,sha256=hV0HpIS3CRAWsdNCqW1uALaX-KdAkxCQXtMNJo54AK4,9734
|
|
89
|
+
django_bolt/testing/helpers.py,sha256=EiPZwlSC1JcHWrp5Vm1N2Qs5tTRrQbtY3EZYz95tF9s,2727
|
|
90
|
+
django_bolt/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
django_bolt/tests/admin_tests/__init__.py,sha256=7n1EF-XwQVo-2VQXFt-W8EosL8l6w6LOJ5Ff3Jkpo_Q,25
|
|
92
|
+
django_bolt/tests/admin_tests/conftest.py,sha256=w6UF6MLG67KdlqfOQJbs4OWiJqWnPf8B_9uxFLuJlP8,166
|
|
93
|
+
django_bolt/tests/admin_tests/test_admin_with_django.py,sha256=K-2dCtXk11CJoHDBopwOUkvZ7EFxcPnQuDvlbeJ-lio,9042
|
|
94
|
+
django_bolt/tests/admin_tests/urls.py,sha256=X-DB6czDvIeEetaAEZIwFORFCRcTPeQXUlv71npQeio,173
|
|
95
|
+
django_bolt/tests/cbv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
+
django_bolt/tests/cbv/test_class_views.py,sha256=migLtBKaeRX2Cl2c1VYG9nbyAkZkkvETi-TBbwyQhWE,15820
|
|
97
|
+
django_bolt/tests/cbv/test_class_views_django_orm.py,sha256=6kTJjBEwEptx66xyVqgMkw4OT5StpQlNv2RhEZYaZyY,22850
|
|
98
|
+
django_bolt/tests/cbv/test_class_views_features.py,sha256=ikzH1hGz3jrQ6N97X-EXQak-rOFq6f4P0vRUlqR9Tlc,43859
|
|
99
|
+
django_bolt/tests/cbv/test_class_views_with_client.py,sha256=2Wvh2biN-3lpNLgv5VA5LRmdYbMDoYR8PABh7a291mQ,18788
|
|
100
|
+
django_bolt/tests/conftest.py,sha256=ziOX9fRGNc7EltZnGtgm28oXgGzNIC59SMQfkZ2ESoY,5392
|
|
101
|
+
django_bolt/tests/test_action_decorator.py,sha256=7_ePHjMCHaZzVb00zaetoxAXsOEZdGftJx50ig7HCEc,12603
|
|
102
|
+
django_bolt/tests/test_auth_secret_key.py,sha256=xIw4EPtrVh6R7FS1dJ26ERjF22EOQMhccvAvciPv-WE,2833
|
|
103
|
+
django_bolt/tests/test_decorator_syntax.py,sha256=f1I-nPvGeXlwgda6558OLKvm4Mwu68GL347et74n3ic,4353
|
|
104
|
+
django_bolt/tests/test_error_handling.py,sha256=V7L-GgYdHNzQE98zBxAsHXQ2GAylk58hDJc5ybEpskY,17779
|
|
105
|
+
django_bolt/tests/test_file_response.py,sha256=26gxEXdKBdvRgzKVFMiPnYmCxuytjpps3fLRPx4bnt0,5998
|
|
106
|
+
django_bolt/tests/test_global_cors.py,sha256=5mKJFJzbLy4XctIjaA-EL2w0VG9ox5-SlcgZ5Xew5NQ,6279
|
|
107
|
+
django_bolt/tests/test_guards_auth.py,sha256=2zbnQQY-Q42YvbrDS9VSdOIiaEqGgKLpR_JNN-tneyQ,14762
|
|
108
|
+
django_bolt/tests/test_guards_integration.py,sha256=qMt1OrR9pX0e9yHwuLWFlT5G7tAx5oCK_8TRjP6jIAs,10441
|
|
109
|
+
django_bolt/tests/test_health.py,sha256=57QjnBwDfBGBEgB7TJhJ8Pxhb0o-rl-VJLTNnXS8EQI,8809
|
|
110
|
+
django_bolt/tests/test_integration_validation.py,sha256=qjNrUYwNgIQWHeEWr3JrmG28Hm-DhsGmuoGmMVMNn5I,13613
|
|
111
|
+
django_bolt/tests/test_json_validation.py,sha256=kF_SA9atMUXhGW9LYNiY2Ltv4x3y99kA9wQbEIevDb0,19079
|
|
112
|
+
django_bolt/tests/test_jwt_auth.py,sha256=D4oyw6aGzvL27f7tlCYRgcPg_rXhWDAx0SyKuESaZGc,9525
|
|
113
|
+
django_bolt/tests/test_jwt_token.py,sha256=wxWOBz_jA0wvDevGWDV1YU9-awm4pEKyw0L2S4ZukOQ,15277
|
|
114
|
+
django_bolt/tests/test_logging.py,sha256=9UOTFa8IIHB3v3kxLruXaUu87u8Lo9IhnQFWoxl4OlM,34914
|
|
115
|
+
django_bolt/tests/test_logging_merge.py,sha256=d9XPocNtLkF7AEhzTvkK053-NhfGkRpb-rvt1Nvpc_o,15807
|
|
116
|
+
django_bolt/tests/test_middleware.py,sha256=lbGw3M5pXVd4WQVfRJbcVfw9SlFjd9aXL9l92K_z8Eg,16600
|
|
117
|
+
django_bolt/tests/test_middleware_server.py,sha256=5fqddCtdxTejD3GPj9Ssz32-a-hytciI70J4Bs41vcQ,7580
|
|
118
|
+
django_bolt/tests/test_model_viewset.py,sha256=cU3GuP6Rb7tze0Mo7rPJcq6r7njKQlnLI7_TIx5SO1M,10738
|
|
119
|
+
django_bolt/tests/test_models.py,sha256=PLkjWEw4pgN6vW3WjptlJ_veHekANmMkbOvDgOMIAKQ,693
|
|
120
|
+
django_bolt/tests/test_pagination.py,sha256=KSfdRGNvvJ00Q6JRHiLcGE87HtHatjbJ2n1bJ7QU0jM,38565
|
|
121
|
+
django_bolt/tests/test_parameter_validation.py,sha256=OpvG_N42hUUojAsCmIkCgMi0jz7YvLnnF5rdk4J3AMk,5360
|
|
122
|
+
django_bolt/tests/test_syntax.py,sha256=JV1a9-pJheFtnZlBIGD6b_Gnx4FigPe77ZiDA1ilO7E,21445
|
|
123
|
+
django_bolt/tests/test_testing_utilities.py,sha256=ze2fG8QvrDNF4yICYyfVXh2BD7t1eNIFSNMDUYStUbM,4624
|
|
124
|
+
django_bolt/tests/test_testing_utilities_simple.py,sha256=cFi3KrP9LvYIfeRbWGfWgwuUevxmwRh0vX2BizPqtcU,4100
|
|
125
|
+
django_bolt/tests/test_viewset_unified.py,sha256=G25EUzA_97YScO_N9P2BKOK4XvU73KHS3qp1jWrknSY,11873
|
|
126
|
+
django_bolt/typing.py,sha256=BsCdPFdfzT-R0-2pQUszpJbHXLvWHNXWmkMRyaDbP-c,8413
|
|
127
|
+
django_bolt/views.py,sha256=sw8SbdfGjCAzoLRpSzlp840CewKwHaoMm4sauYmxg8A,40605
|
|
128
|
+
django_bolt-0.1.0.dist-info/RECORD,,
|