starmallow 0.6.4__tar.gz → 0.6.5__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 (116) hide show
  1. {starmallow-0.6.4 → starmallow-0.6.5}/PKG-INFO +1 -1
  2. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/__init__.py +1 -1
  3. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/background.py +1 -1
  4. {starmallow-0.6.4 → starmallow-0.6.5}/.editorconfig +0 -0
  5. {starmallow-0.6.4 → starmallow-0.6.5}/.gitignore +0 -0
  6. {starmallow-0.6.4 → starmallow-0.6.5}/.pre-commit-config.yaml +0 -0
  7. {starmallow-0.6.4 → starmallow-0.6.5}/Dockerfile +0 -0
  8. {starmallow-0.6.4 → starmallow-0.6.5}/LICENSE.md +0 -0
  9. {starmallow-0.6.4 → starmallow-0.6.5}/README.md +0 -0
  10. {starmallow-0.6.4 → starmallow-0.6.5}/docker-compose.yml +0 -0
  11. {starmallow-0.6.4 → starmallow-0.6.5}/docs/design_ideas.md +0 -0
  12. {starmallow-0.6.4 → starmallow-0.6.5}/examples/__init__.py +0 -0
  13. {starmallow-0.6.4 → starmallow-0.6.5}/examples/cache_server.py +0 -0
  14. {starmallow-0.6.4 → starmallow-0.6.5}/examples/flask_server.py +0 -0
  15. {starmallow-0.6.4 → starmallow-0.6.5}/examples/goals.ipynb +0 -0
  16. {starmallow-0.6.4 → starmallow-0.6.5}/examples/gunicorn.py +0 -0
  17. {starmallow-0.6.4 → starmallow-0.6.5}/examples/recommended_server.py +0 -0
  18. {starmallow-0.6.4 → starmallow-0.6.5}/examples/sample_server.py +0 -0
  19. {starmallow-0.6.4 → starmallow-0.6.5}/pyproject.toml +0 -0
  20. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/applications.py +0 -0
  21. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/concurrency.py +0 -0
  22. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/constants.py +0 -0
  23. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/dataclasses.py +0 -0
  24. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/datastructures.py +0 -0
  25. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/decorators.py +0 -0
  26. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/delimited_field.py +0 -0
  27. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/docs.py +0 -0
  28. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/endpoint.py +0 -0
  29. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/endpoints.py +0 -0
  30. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/exception_handlers.py +0 -0
  31. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/exceptions.py +0 -0
  32. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/ext/__init__.py +0 -0
  33. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/ext/marshmallow/__init__.py +0 -0
  34. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/ext/marshmallow/openapi.py +0 -0
  35. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/fields.py +0 -0
  36. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/middleware/__init__.py +0 -0
  37. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/middleware/asyncexitstack.py +0 -0
  38. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/params.py +0 -0
  39. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/request_resolver.py +0 -0
  40. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/requests.py +0 -0
  41. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/responses.py +0 -0
  42. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/routing.py +0 -0
  43. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/schema_generator.py +0 -0
  44. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/__init__.py +0 -0
  45. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/api_key.py +0 -0
  46. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/base.py +0 -0
  47. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/http.py +0 -0
  48. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/oauth2.py +0 -0
  49. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/open_id_connect_url.py +0 -0
  50. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/security/utils.py +0 -0
  51. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/serializers.py +0 -0
  52. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/types.py +0 -0
  53. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/utils.py +0 -0
  54. {starmallow-0.6.4 → starmallow-0.6.5}/starmallow/websockets.py +0 -0
  55. {starmallow-0.6.4 → starmallow-0.6.5}/tests/__init__.py +0 -0
  56. {starmallow-0.6.4 → starmallow-0.6.5}/tests/basic_api.py +0 -0
  57. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/__init__.py +0 -0
  58. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/__init__.py +0 -0
  59. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie.py +0 -0
  60. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie_description.py +0 -0
  61. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_cookie_optional.py +0 -0
  62. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header.py +0 -0
  63. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header_description.py +0 -0
  64. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_header_optional.py +0 -0
  65. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_query.py +0 -0
  66. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_query_description.py +0 -0
  67. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/api_key/test_api_key_query_optional.py +0 -0
  68. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/__init__.py +0 -0
  69. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_base.py +0 -0
  70. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_base_description.py +0 -0
  71. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_base_optional.py +0 -0
  72. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_basic.py +0 -0
  73. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_basic_realm.py +0 -0
  74. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_basic_realm_description.py +0 -0
  75. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_bearer.py +0 -0
  76. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_bearer_description.py +0 -0
  77. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_bearer_optional.py +0 -0
  78. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_digest.py +0 -0
  79. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_digest_description.py +0 -0
  80. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/http/test_http_digest_optional.py +0 -0
  81. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/__init__.py +0 -0
  82. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2.py +0 -0
  83. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_authorization_code_bearer.py +0 -0
  84. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_authorization_code_bearer_description.py +0 -0
  85. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_optional.py +0 -0
  86. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_optional_description.py +0 -0
  87. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_password_bearer_optional.py +0 -0
  88. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/oauth2/test_oauth2_password_bearer_optional_description.py +0 -0
  89. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/__init__.py +0 -0
  90. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/test_openid_connect.py +0 -0
  91. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/test_openid_connect_description.py +0 -0
  92. {starmallow-0.6.4 → starmallow-0.6.5}/tests/security/openid_connect/test_openid_connect_optional.py +0 -0
  93. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_properties.py +0 -0
  94. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_response_extra.py +0 -0
  95. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_bad.py +0 -0
  96. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_custom_model_in_callback.py +0 -0
  97. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_custom_validationerror.py +0 -0
  98. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_default_validationerror.py +0 -0
  99. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_response_class.py +0 -0
  100. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_additional_responses_router.py +0 -0
  101. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_annotated.py +0 -0
  102. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_basic_api.py +0 -0
  103. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_dataclass_fields.py +0 -0
  104. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_delimited_params.py +0 -0
  105. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_http_endpoints.py +0 -0
  106. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_input.py +0 -0
  107. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_middleware.py +0 -0
  108. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_requests_orjson.py +0 -0
  109. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_requests_ujson.py +0 -0
  110. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_resolved_param_contextmanagers.py +0 -0
  111. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_resolved_params.py +0 -0
  112. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_responses.py +0 -0
  113. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_responses_orjson.py +0 -0
  114. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_responses_ujson.py +0 -0
  115. {starmallow-0.6.4 → starmallow-0.6.5}/tests/test_ws_router.py +0 -0
  116. {starmallow-0.6.4 → starmallow-0.6.5}/tests/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: starmallow
3
- Version: 0.6.4
3
+ Version: 0.6.5
4
4
  Summary: StarMallow framework
5
5
  Project-URL: Homepage, https://github.com/mvanderlee/starmallow
6
6
  Author-email: Michiel Vanderlee <jmt.vanderlee@gmail.com>
@@ -1,4 +1,4 @@
1
- __version__ = "0.6.4"
1
+ __version__ = "0.6.5"
2
2
 
3
3
  from .applications import StarMallow
4
4
  from .exceptions import RequestValidationError
@@ -18,7 +18,7 @@ class BackgroundTask(StarletteBackgroundTask):
18
18
  else:
19
19
  await run_in_threadpool(self.func, *self.args, **self.kwargs)
20
20
  except BaseException as e:
21
- logger.exception(f'Background Task {self.func} failed: {e}')
21
+ logger.exception(f'Background Task {self.func.__module__}.{self.func.__name__} failed: {e}')
22
22
 
23
23
 
24
24
  class BackgroundTasks(StarletteBackgroundTasks):
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes