pyquoks 1.3.1__tar.gz → 1.3.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyquoks
3
- Version: 1.3.1
3
+ Version: 1.3.2
4
4
  Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
5
  Home-page: https://diquoks.ru
6
6
  Author: Denis Titovets
@@ -13,15 +13,15 @@ Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: blinker==1.9.0
15
15
  Requires-Dist: certifi==2025.10.5
16
- Requires-Dist: charset-normalizer==3.4.3
16
+ Requires-Dist: charset-normalizer==3.4.4
17
17
  Requires-Dist: click==8.3.0
18
18
  Requires-Dist: colorama==0.4.6
19
19
  Requires-Dist: Flask==3.1.2
20
- Requires-Dist: idna==3.10
20
+ Requires-Dist: idna==3.11
21
21
  Requires-Dist: itsdangerous==2.2.0
22
22
  Requires-Dist: Jinja2==3.1.6
23
23
  Requires-Dist: MarkupSafe==3.0.3
24
- Requires-Dist: pillow==11.3.0
24
+ Requires-Dist: pillow==12.0.0
25
25
  Requires-Dist: requests==2.32.5
26
26
  Requires-Dist: urllib3==2.5.0
27
27
  Requires-Dist: waitress==3.0.2
@@ -1,14 +1,14 @@
1
1
  blinker==1.9.0
2
2
  certifi==2025.10.5
3
- charset-normalizer==3.4.3
3
+ charset-normalizer==3.4.4
4
4
  click==8.3.0
5
5
  colorama==0.4.6
6
6
  Flask==3.1.2
7
- idna==3.10
7
+ idna==3.11
8
8
  itsdangerous==2.2.0
9
9
  Jinja2==3.1.6
10
10
  MarkupSafe==3.0.3
11
- pillow==11.3.0
11
+ pillow==12.0.0
12
12
  requests==2.32.5
13
13
  urllib3==2.5.0
14
14
  waitress==3.0.2
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = pyquoks
3
- version = 1.3.1
3
+ version = 1.3.2
4
4
  author = Denis Titovets
5
5
  author_email = den232titovets@yandex.ru
6
6
  description = Пакет PyPI для часто используемых модулей в проектах diquoks
@@ -87,6 +87,8 @@ class IConfigProvider:
87
87
  match data_type.__name__:
88
88
  case "int":
89
89
  setattr(self, setting, int(getattr(self, setting)))
90
+ case "float":
91
+ setattr(self, setting, float(getattr(self, setting)))
90
92
  case "bool":
91
93
  if getattr(self, setting) not in (str(True), str(False)):
92
94
  setattr(self, setting, None)
@@ -324,13 +326,12 @@ class IDatabaseManager:
324
326
  check_same_thread=False,
325
327
  )
326
328
 
327
- self._cursor = self.cursor()
328
- self._db_cursor.execute(self._SQL)
329
+ self._cursor.execute(self._SQL)
329
330
  self.commit()
330
331
 
331
332
  @property
332
- def _db_cursor(self) -> sqlite3.Cursor:
333
- return self._cursor
333
+ def _cursor(self) -> sqlite3.Cursor:
334
+ return self.cursor()
334
335
 
335
336
  _PATH: str = utils.get_path("db/")
336
337
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyquoks
3
- Version: 1.3.1
3
+ Version: 1.3.2
4
4
  Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
5
  Home-page: https://diquoks.ru
6
6
  Author: Denis Titovets
@@ -13,15 +13,15 @@ Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: blinker==1.9.0
15
15
  Requires-Dist: certifi==2025.10.5
16
- Requires-Dist: charset-normalizer==3.4.3
16
+ Requires-Dist: charset-normalizer==3.4.4
17
17
  Requires-Dist: click==8.3.0
18
18
  Requires-Dist: colorama==0.4.6
19
19
  Requires-Dist: Flask==3.1.2
20
- Requires-Dist: idna==3.10
20
+ Requires-Dist: idna==3.11
21
21
  Requires-Dist: itsdangerous==2.2.0
22
22
  Requires-Dist: Jinja2==3.1.6
23
23
  Requires-Dist: MarkupSafe==3.0.3
24
- Requires-Dist: pillow==11.3.0
24
+ Requires-Dist: pillow==12.0.0
25
25
  Requires-Dist: requests==2.32.5
26
26
  Requires-Dist: urllib3==2.5.0
27
27
  Requires-Dist: waitress==3.0.2
@@ -1,14 +1,14 @@
1
1
  blinker==1.9.0
2
2
  certifi==2025.10.5
3
- charset-normalizer==3.4.3
3
+ charset-normalizer==3.4.4
4
4
  click==8.3.0
5
5
  colorama==0.4.6
6
6
  Flask==3.1.2
7
- idna==3.10
7
+ idna==3.11
8
8
  itsdangerous==2.2.0
9
9
  Jinja2==3.1.6
10
10
  MarkupSafe==3.0.3
11
- pillow==11.3.0
11
+ pillow==12.0.0
12
12
  requests==2.32.5
13
13
  urllib3==2.5.0
14
14
  waitress==3.0.2
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes