alpha-python 0.6.1__tar.gz → 0.6.2__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 (151) hide show
  1. {alpha_python-0.6.1 → alpha_python-0.6.2}/PKG-INFO +1 -1
  2. {alpha_python-0.6.1 → alpha_python-0.6.2}/pyproject.toml +1 -1
  3. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/__init__.py +2 -1
  4. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/controller.mustache +1 -3
  5. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/__init__.py +2 -1
  6. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/models/filter_operators.py +3 -5
  7. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/sql_database.py +0 -2
  8. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha_python.egg-info/PKG-INFO +1 -1
  9. {alpha_python-0.6.1 → alpha_python-0.6.2}/LICENSE +0 -0
  10. {alpha_python-0.6.1 → alpha_python-0.6.2}/README.md +0 -0
  11. {alpha_python-0.6.1 → alpha_python-0.6.2}/setup.cfg +0 -0
  12. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/adapters/__init__.py +0 -0
  13. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/adapters/rest_api_unit_of_work.py +0 -0
  14. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/adapters/sqla_unit_of_work.py +0 -0
  15. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/cli.py +0 -0
  16. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/containers/__init__.py +0 -0
  17. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/containers/container.py +0 -0
  18. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/domain/__init__.py +0 -0
  19. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/domain/models/__init__.py +0 -0
  20. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/domain/models/base_model.py +0 -0
  21. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/domain/models/group.py +0 -0
  22. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/domain/models/life_cycle_base.py +0 -0
  23. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/domain/models/role.py +0 -0
  24. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/domain/models/user.py +0 -0
  25. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/encoder.py +0 -0
  26. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/exceptions.py +0 -0
  27. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/__init__.py +0 -0
  28. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/_type_conversion_matrix.py +0 -0
  29. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/_type_mapping.py +0 -0
  30. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/class_factories.py +0 -0
  31. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/default_field_factory.py +0 -0
  32. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/field_iterator.py +0 -0
  33. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/jwt_factory.py +0 -0
  34. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/logging_handler_factory.py +0 -0
  35. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/model_class_factory.py +0 -0
  36. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/models/__init__.py +0 -0
  37. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/models/factory_classes.py +0 -0
  38. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/password_factory.py +0 -0
  39. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/request_factory.py +0 -0
  40. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/response_factory.py +0 -0
  41. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/factories/type_factories.py +0 -0
  42. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/__init__.py +0 -0
  43. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/api_generate_handler.py +0 -0
  44. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/api_run_handler.py +0 -0
  45. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/base_handler.py +0 -0
  46. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/gen-code.sh +0 -0
  47. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/models/__init__.py +0 -0
  48. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/models/argument.py +0 -0
  49. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/models/command.py +0 -0
  50. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/models/section.py +0 -0
  51. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/models/subparser.py +0 -0
  52. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/run-api.sh +0 -0
  53. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/__init__.py +0 -0
  54. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/Dockerfile.mustache +0 -0
  55. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/README.mustache +0 -0
  56. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/__init__model.mustache +0 -0
  57. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/__init__test.mustache +0 -0
  58. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/__main__.mustache +0 -0
  59. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/base_model.mustache +0 -0
  60. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/controller_test.mustache +0 -0
  61. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/dockerignore.mustache +0 -0
  62. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/encoder.mustache +0 -0
  63. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/git_push.sh.mustache +0 -0
  64. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/gitignore.mustache +0 -0
  65. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/model.mustache +0 -0
  66. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/openapi.mustache +0 -0
  67. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/param_type.mustache +0 -0
  68. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/requirements.mustache +0 -0
  69. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/security_controller_.mustache +0 -0
  70. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/setup.mustache +0 -0
  71. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/test-requirements.mustache +0 -0
  72. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/tox.mustache +0 -0
  73. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/travis.mustache +0 -0
  74. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/typing_utils.mustache +0 -0
  75. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/handlers/templates/python-flask/util.mustache +0 -0
  76. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/connectors/__init__.py +0 -0
  77. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/connectors/ldap_connector.py +0 -0
  78. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/connectors/oidc_connector.py +0 -0
  79. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/connectors/sql_alchemy.py +0 -0
  80. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/databases/__init__.py +0 -0
  81. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/databases/sql_alchemy.py +0 -0
  82. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/models/__init__.py +0 -0
  83. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/models/json_patch.py +0 -0
  84. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/models/order_by.py +0 -0
  85. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/models/query_clause.py +0 -0
  86. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/infra/models/search_filter.py +0 -0
  87. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/__init__.py +0 -0
  88. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/api_repository.py +0 -0
  89. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/attrs_instance.py +0 -0
  90. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/dataclass_instance.py +0 -0
  91. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/factories.py +0 -0
  92. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/handler.py +0 -0
  93. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/openapi_model.py +0 -0
  94. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/patchable.py +0 -0
  95. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/providers.py +0 -0
  96. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/pydantic_instance.py +0 -0
  97. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/sql_mapper.py +0 -0
  98. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/sql_repository.py +0 -0
  99. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/token_factory.py +0 -0
  100. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/unit_of_work.py +0 -0
  101. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/interfaces/updatable.py +0 -0
  102. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/mixins/__init__.py +0 -0
  103. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/mixins/group_lifecycle.py +0 -0
  104. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/mixins/jwt_provider.py +0 -0
  105. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/mixins/user_lifecycle.py +0 -0
  106. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/__init__.py +0 -0
  107. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/api_key_provider.py +0 -0
  108. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/database_provider.py +0 -0
  109. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/ldap_provider.py +0 -0
  110. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/models/__init__.py +0 -0
  111. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/models/credentials.py +0 -0
  112. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/models/identity.py +0 -0
  113. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/models/token.py +0 -0
  114. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/providers/oidc_provider.py +0 -0
  115. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/py.typed +0 -0
  116. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/repositories/__init__.py +0 -0
  117. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/repositories/models/__init__.py +0 -0
  118. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/repositories/models/repository_model.py +0 -0
  119. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/repositories/rest_api_repository.py +0 -0
  120. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/repositories/sql_alchemy_repository.py +0 -0
  121. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/services/__init__.py +0 -0
  122. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/services/authentication_service.py +0 -0
  123. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/services/models/__init__.py +0 -0
  124. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/services/models/cookie.py +0 -0
  125. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/services/user_lifecycle_management.py +0 -0
  126. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/__init__.py +0 -0
  127. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/_http_codes.py +0 -0
  128. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/cookie.py +0 -0
  129. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/is_attrs.py +0 -0
  130. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/is_pydantic.py +0 -0
  131. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/logging_configurator.py +0 -0
  132. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/logging_level_checker.py +0 -0
  133. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/openapi_test/__init__.py +0 -0
  134. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/openapi_test/container.py +0 -0
  135. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/openapi_test/exceptions.py +0 -0
  136. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/openapi_test/models.py +0 -0
  137. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/openapi_test/orm.py +0 -0
  138. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/openapi_test/response.py +0 -0
  139. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/openapi_test/service.py +0 -0
  140. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/request_headers.py +0 -0
  141. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/response_object.py +0 -0
  142. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/secret_generator.py +0 -0
  143. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/verify_identity.py +0 -0
  144. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha/utils/version_checker.py +0 -0
  145. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha_python.egg-info/SOURCES.txt +0 -0
  146. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha_python.egg-info/dependency_links.txt +0 -0
  147. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha_python.egg-info/entry_points.txt +0 -0
  148. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha_python.egg-info/requires.txt +0 -0
  149. {alpha_python-0.6.1 → alpha_python-0.6.2}/src/alpha_python.egg-info/top_level.txt +0 -0
  150. {alpha_python-0.6.1 → alpha_python-0.6.2}/tests/test_cli.py +0 -0
  151. {alpha_python-0.6.1 → alpha_python-0.6.2}/tests/test_encoder.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alpha-python
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Alpha is intended to be the first dependency you need to add to your Python application. It is a Python library which contains standard building blocks that can be used in applications that are used as APIs and/or make use of database interaction.
5
5
  Author-email: Bart Reijling <bart@reijling.eu>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "alpha-python"
3
- version = "0.6.1"
3
+ version = "0.6.2"
4
4
  description = "Alpha is intended to be the first dependency you need to add to your Python application. It is a Python library which contains standard building blocks that can be used in applications that are used as APIs and/or make use of database interaction."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -20,7 +20,7 @@ from alpha.infra.connectors.oidc_connector import (
20
20
  KeyCloakOIDCConnector,
21
21
  )
22
22
  from alpha.infra.connectors.sql_alchemy import SqlAlchemyDatabase
23
- from alpha.infra.models.filter_operators import And, Or
23
+ from alpha.infra.models.filter_operators import And, Or, FilterOperator
24
24
  from alpha.infra.models.json_patch import JsonPatch
25
25
  from alpha.infra.models.order_by import OrderBy, Order
26
26
  from alpha.infra.models.search_filter import SearchFilter, Operator
@@ -116,6 +116,7 @@ __all__ = [
116
116
  "SqlAlchemyDatabase",
117
117
  "And",
118
118
  "Or",
119
+ "FilterOperator",
119
120
  "JsonPatch",
120
121
  "OrderBy",
121
122
  "Order",
@@ -43,9 +43,7 @@ from {{packageName}} import models as api_models
43
43
 
44
44
  {{#operations}}
45
45
  {{#operation}}
46
- {{#authMethods}}{{#vendorExtensions.x-alpha-service-name}}@inject{{/vendorExtensions.x-alpha-service-name}}{{/authMethods}}
47
- {{^authMethods}}{{#vendorExtensions.x-alpha-service-name}}@inject{{/vendorExtensions.x-alpha-service-name}}{{/authMethods}}
48
- {{#authMethods}}{{^vendorExtensions.x-alpha-service-name}}@inject{{/vendorExtensions.x-alpha-service-name}}{{/authMethods}}
46
+ {{#authMethods}}{{#-first}}@inject{{/-first}}{{/authMethods}}{{^authMethods}}{{#vendorExtensions.x-alpha-service-name}}@inject{{/vendorExtensions.x-alpha-service-name}}{{/authMethods}}
49
47
  def {{operationId}}(
50
48
  {{#allParams}}{{^isBodyParam}}{{paramName}}{{^required}}=None{{/required}},{{/isBodyParam}}{{/allParams}}
51
49
  {{#authMethods}}{{#isBasicBearer}}token_factory=Provide[Container.token_factory],{{/isBasicBearer}}{{/authMethods}}
@@ -3,7 +3,7 @@ from alpha.infra.connectors.oidc_connector import (
3
3
  KeyCloakOIDCConnector,
4
4
  )
5
5
  from alpha.infra.connectors.sql_alchemy import SqlAlchemyDatabase
6
- from alpha.infra.models.filter_operators import And, Or
6
+ from alpha.infra.models.filter_operators import And, Or, FilterOperator
7
7
  from alpha.infra.models.json_patch import JsonPatch
8
8
  from alpha.infra.models.order_by import OrderBy, Order
9
9
  from alpha.infra.models.search_filter import SearchFilter, Operator
@@ -22,6 +22,7 @@ __all__ = [
22
22
  "SqlAlchemyDatabase",
23
23
  "And",
24
24
  "Or",
25
+ "FilterOperator",
25
26
  "JsonPatch",
26
27
  "OrderBy",
27
28
  "Order",
@@ -4,7 +4,7 @@
4
4
  - Or
5
5
  """
6
6
 
7
- from typing import Any, Callable, Iterable
7
+ from typing import Any, Callable, Iterable, Self
8
8
 
9
9
  from sqlalchemy.orm import Query
10
10
  from sqlalchemy.sql.expression import ColumnElement, and_, or_
@@ -17,13 +17,11 @@ class FilterOperator:
17
17
  search query
18
18
  """
19
19
 
20
- def __init__(self, *search_filters: SearchFilter):
20
+ def __init__(self, *search_filters: SearchFilter | Self) -> None:
21
21
  """Instantiate the filter operator by storing the search filter
22
22
  objects
23
23
  """
24
- self.search_filters: Iterable[SearchFilter | FilterOperator] = (
25
- search_filters
26
- )
24
+ self.search_filters: Iterable[SearchFilter | Self] = search_filters
27
25
 
28
26
  @property
29
27
  def filter_operator(
@@ -32,5 +32,3 @@ class SqlDatabase(Protocol):
32
32
  def drop_tables(
33
33
  self, metadata: sa.MetaData, tables: list[sa.Table] | None = None
34
34
  ) -> None: ...
35
-
36
- def _create_schema(self, engine: Engine, schema_name: str) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alpha-python
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Alpha is intended to be the first dependency you need to add to your Python application. It is a Python library which contains standard building blocks that can be used in applications that are used as APIs and/or make use of database interaction.
5
5
  Author-email: Bart Reijling <bart@reijling.eu>
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes