fast-clean 0.1.2__py3-none-any.whl → 0.3.0__py3-none-any.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.
fast_clean/settings.py CHANGED
@@ -53,6 +53,7 @@ class CoreS3SettingsSchema(BaseModel):
53
53
  """
54
54
 
55
55
  endpoint: str
56
+ endpoint_url: str
56
57
  access_key: str
57
58
  secret_key: str
58
59
  port: int
@@ -126,7 +127,7 @@ class CoreKafkaSettingsSchema(BaseModel):
126
127
  case 'SASL':
127
128
  for field in ('broker_username', 'broker_password'):
128
129
  assert bool(getattr(self, field)), f'{field} must be set when credentials={self.credentials}'
129
- case None:
130
+ case _:
130
131
  ...
131
132
  return self
132
133
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: fast-clean
3
- Version: 0.1.2
3
+ Version: 0.3.0
4
4
  Summary: FastAPI Clean Architecture implementation
5
5
  Author-email: Luferov Victor <luferovvs@yandex.ru>, Orlov Artem <squakrazv@yandex.ru>
6
6
  Requires-Python: >=3.12
@@ -9,7 +9,7 @@ fast_clean/loggers.py,sha256=hVvZSDMMxYnK-p_yyjd4R7SyHpmxQF3eKQEeMu9Q-jo,705
9
9
  fast_clean/middleware.py,sha256=7iaA39ug85oOtSdQP8T3u8cX4KAAvDlfAlUg43_riR0,461
10
10
  fast_clean/models.py,sha256=qnNUSwLf0gOW8C98PMIs6vTw7UP3-Nk-k6YoFvHstVM,880
11
11
  fast_clean/redis.py,sha256=H_SLnDhY_ute8pYHdhIypUGlCwMcVfFA4S2j8vLUph0,578
12
- fast_clean/settings.py,sha256=Imhe-Es5JOK3v3jaV7C1PwSglCycDIAU79ne3HPTmG4,4696
12
+ fast_clean/settings.py,sha256=o460LZjXW0_WYe0QB9g0fTgch8dhkUq-6flAnf4LKM4,4715
13
13
  fast_clean/use_cases.py,sha256=XzRqnS3LOkaadbL50-E9f7q3Bi5Yz4AOCHKh82AH0Mg,1384
14
14
  fast_clean/contrib/__init__.py,sha256=AcFNyhc0QGsOnYvzQGanDN3QIAsKpn4d8RIj73F-sGc,63
15
15
  fast_clean/contrib/healthcheck/__init__.py,sha256=p8hUCLdv2qGngTwAeTGIV4h_ZGDm9ZNWMrA5_k3Yi0E,106
@@ -58,7 +58,7 @@ fast_clean/utils/thread.py,sha256=ChEWBLupnSEMq4Wro_aiW0QvCLUKedKc0TQFMu7Zg4g,56
58
58
  fast_clean/utils/time.py,sha256=nvavbtG4zR_gkrGSbsqKAsBdePxO3LuTeoISbFZIgn0,307
59
59
  fast_clean/utils/type_converters.py,sha256=bMEJeoQB9Q6Qok1-ppn4Ii8ZpIkZwJbD2IzCydSStHw,523
60
60
  fast_clean/utils/typer.py,sha256=1O7BsNGn68bBzNbj0-Ycfhv35WpLzwvYTKn510YNXQQ,663
61
- fast_clean-0.1.2.dist-info/METADATA,sha256=sIBIfOzYiWYc8zm_8dV7GQ-NYbgqd1gFmn5AFx-zLyY,1030
62
- fast_clean-0.1.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
63
- fast_clean-0.1.2.dist-info/top_level.txt,sha256=QfsGs-QLmPCZWWPFOukD0zhMnokH68FoO2KeObl6ZIA,11
64
- fast_clean-0.1.2.dist-info/RECORD,,
61
+ fast_clean-0.3.0.dist-info/METADATA,sha256=jMe_7AoCBGEuvZlJaT_B57MDIr6kw5tuD9mXz8Vgyvo,1030
62
+ fast_clean-0.3.0.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
63
+ fast_clean-0.3.0.dist-info/top_level.txt,sha256=QfsGs-QLmPCZWWPFOukD0zhMnokH68FoO2KeObl6ZIA,11
64
+ fast_clean-0.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (79.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5