flet 0.70.0.dev6519__py3-none-any.whl → 0.70.0.dev6533__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.

Potentially problematic release.


This version of flet might be problematic. Click here for more details.

@@ -90,7 +90,7 @@ class AuthorizationService(Authorization):
90
90
  self.user = await self.provider._fetch_user(self.__token.access_token)
91
91
  if self.user is None and self.provider.user_endpoint is not None:
92
92
  if self.provider.user_id_fn is None:
93
- raise Exception(
93
+ raise ValueError(
94
94
  "user_id_fn must be specified too if user_endpoint is not None"
95
95
  )
96
96
  self.user = await self.__get_user()
@@ -36,7 +36,7 @@ class OAuthProvider:
36
36
  self.code_verifier = code_verifier
37
37
 
38
38
  def _name(self):
39
- raise Exception("Not implemented")
39
+ raise NotImplementedError("Subclasses must implement _name()")
40
40
 
41
41
  async def _fetch_groups(self, access_token: str) -> list[Group]:
42
42
  return []
@@ -134,7 +134,7 @@ class BaseControl:
134
134
  self._i = ControlId.next()
135
135
  if not hasattr(self, "_c") or self._c is None:
136
136
  cls_name = f"{self.__class__.__module__}.{self.__class__.__qualname__}"
137
- raise Exception(
137
+ raise ValueError(
138
138
  f"Control {cls_name} must have @control decorator with "
139
139
  "type_name specified."
140
140
  )
@@ -236,7 +236,7 @@ class BaseControl:
236
236
  # public methods
237
237
  def update(self) -> None:
238
238
  if hasattr(self, "_frozen"):
239
- raise Exception("Frozen control cannot be updated.")
239
+ raise RuntimeError("Frozen control cannot be updated.")
240
240
  if not self.page:
241
241
  raise RuntimeError(
242
242
  f"{self.__class__.__qualname__} Control must be added to the page first"
@@ -329,7 +329,7 @@ class BasePage(AdaptiveControl):
329
329
  Exception: If the specified dialog is already open.
330
330
  """
331
331
  if dialog in self._dialogs.controls:
332
- raise Exception("Dialog is already opened")
332
+ raise RuntimeError("Dialog is already opened")
333
333
 
334
334
  original_on_dismiss = dialog.on_dismiss
335
335
 
flet/controls/control.py CHANGED
@@ -146,6 +146,3 @@ class Control(BaseControl):
146
146
  raise ValueError(
147
147
  f"expand must be of type bool or int, got {type(self.expand)}"
148
148
  )
149
-
150
- def clean(self) -> None:
151
- raise Exception("Deprecated!")
@@ -83,7 +83,7 @@ def get_event_field_type(control: Any, field_name: str):
83
83
 
84
84
  return event_type
85
85
  except Exception as e:
86
- raise Exception(f"[resolve error] {field_name}: {e}") from e
86
+ raise RuntimeError(f"[resolve error] {field_name}: {e}") from e
87
87
 
88
88
 
89
89
  EventControlType = TypeVar("EventControlType", bound="BaseControl")
@@ -1060,7 +1060,7 @@ class DiffBuilder:
1060
1060
  if parent:
1061
1061
  logger.debug("\n\nAdding parent %s to item: %s", parent, item)
1062
1062
  if parent is item:
1063
- raise Exception(f"Parent is the same as item: {item}")
1063
+ raise ObjectPatchException(f"Parent is the same as item: {item}")
1064
1064
  item._parent = weakref.ref(parent)
1065
1065
  else:
1066
1066
  logger.debug("\n\nSkip adding parent to item: %s", item)
@@ -1113,7 +1113,7 @@ class DiffBuilder:
1113
1113
 
1114
1114
  if parent:
1115
1115
  if parent is item:
1116
- raise Exception(f"Parent is the same as item: {item}")
1116
+ raise ObjectPatchException(f"Parent is the same as item: {item}")
1117
1117
  item._parent = weakref.ref(parent)
1118
1118
 
1119
1119
  if hasattr(item, "_frozen"):
@@ -1130,7 +1130,9 @@ class DiffBuilder:
1130
1130
  or not isinstance(obj, control_cls)
1131
1131
  ):
1132
1132
  if hasattr(obj, "_frozen"):
1133
- raise Exception("Frozen controls cannot be updated.") from None
1133
+ raise RuntimeError(
1134
+ "Frozen controls cannot be updated."
1135
+ ) from None
1134
1136
 
1135
1137
  if hasattr(obj, "__changes"):
1136
1138
  old_value = getattr(obj, name, None)
flet/controls/page.py CHANGED
@@ -866,7 +866,7 @@ class Page(BasePage):
866
866
  """
867
867
  if sess := self.__session():
868
868
  return sess
869
- raise Exception("An attempt to fetch destroyed session.")
869
+ raise RuntimeError("An attempt to fetch destroyed session.")
870
870
 
871
871
  @property
872
872
  def query(self) -> QueryString:
@@ -20,7 +20,7 @@ class Connection:
20
20
  @property
21
21
  def loop(self) -> AbstractEventLoop:
22
22
  if self.__loop is None:
23
- raise Exception("Loop not initialized")
23
+ raise RuntimeError("Loop not initialized")
24
24
  return self.__loop
25
25
 
26
26
  @loop.setter
@@ -30,7 +30,7 @@ class Connection:
30
30
  @property
31
31
  def executor(self) -> ThreadPoolExecutor:
32
32
  if self.__executor is None:
33
- raise Exception("Executor not initialized")
33
+ raise RuntimeError("Executor not initialized")
34
34
  return self.__executor
35
35
 
36
36
  @executor.setter
@@ -40,7 +40,7 @@ class Connection:
40
40
  @property
41
41
  def pubsubhub(self) -> PubSubHub:
42
42
  if self.__pubsubhub is None:
43
- raise Exception("PubSubHub not initialized")
43
+ raise RuntimeError("PubSubHub not initialized")
44
44
  return self.__pubsubhub
45
45
 
46
46
  @pubsubhub.setter
@@ -206,7 +206,7 @@ class FletSocketServer(Connection):
206
206
 
207
207
  else:
208
208
  # it's something else
209
- raise Exception(f'Unknown message "{action}": {body}')
209
+ raise RuntimeError(f'Unknown message "{action}": {body}')
210
210
 
211
211
  if task:
212
212
  self.__running_tasks.add(task)
@@ -59,7 +59,7 @@ def configure_encode_object_for_msgpack(control_cls):
59
59
  elif isinstance(obj, Duration):
60
60
  return msgpack.ExtType(3, obj.in_microseconds)
61
61
  elif callable(obj):
62
- raise Exception(f"Cannot serialize method: {obj}") from None
62
+ raise RuntimeError(f"Cannot serialize method: {obj}") from None
63
63
  return obj
64
64
 
65
65
  return encode_object_for_msgpack
@@ -4,6 +4,7 @@ from typing import Any
4
4
 
5
5
  import flet_js
6
6
  import msgpack
7
+
7
8
  from flet.controls.base_control import BaseControl
8
9
  from flet.messaging.connection import Connection
9
10
  from flet.messaging.protocol import (
@@ -107,7 +108,7 @@ class PyodideConnection(Connection):
107
108
 
108
109
  else:
109
110
  # it's something else
110
- raise Exception(f'Unknown message "{action}": {body}')
111
+ raise RuntimeError(f'Unknown message "{action}": {body}')
111
112
 
112
113
  if task:
113
114
  self.__running_tasks.add(task)
flet/messaging/session.py CHANGED
@@ -229,7 +229,7 @@ class Session:
229
229
 
230
230
  result, err = self.__method_call_results.pop(evt)
231
231
  if err:
232
- raise Exception(err)
232
+ raise RuntimeError(err)
233
233
  return result
234
234
 
235
235
  def handle_invoke_method_results(
@@ -242,7 +242,7 @@ class Session:
242
242
  self.__method_call_results[evt] = (result, error)
243
243
  evt.set()
244
244
  else:
245
- raise Exception(
245
+ raise RuntimeError(
246
246
  f"Error handling invoke method results. Control with ID {control_id} "
247
247
  "is not registered."
248
248
  )
@@ -346,6 +346,7 @@ class Session:
346
346
  # print(f"**** Running effect: {hook} {is_cleanup}")
347
347
  if hook and hook.setup and not is_cleanup:
348
348
  hook.cancel()
349
+ res = None
349
350
  if asyncio.iscoroutinefunction(hook.setup):
350
351
  hook._setup_task = asyncio.create_task(hook.setup())
351
352
  else:
flet/security/__init__.py CHANGED
@@ -8,7 +8,7 @@ try:
8
8
  from cryptography.hazmat.primitives.ciphers.aead import AESGCM
9
9
  from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
10
10
  except ImportError as e:
11
- raise Exception(
11
+ raise ImportError(
12
12
  'Install "cryptography" Python package to use Flet security utils.'
13
13
  ) from e
14
14
 
@@ -377,7 +377,7 @@ class FletTestApp:
377
377
  f.write(screenshot)
378
378
  else:
379
379
  if not golden_image_path.exists():
380
- raise Exception(
380
+ raise RuntimeError(
381
381
  f"Golden image for {name} not found: {golden_image_path}"
382
382
  )
383
383
  golden_img = self._load_image_from_file(golden_image_path)
flet/utils/files.py CHANGED
@@ -16,7 +16,7 @@ def safe_tar_extractall(tar, path=".", members=None, *, numeric_owner=False):
16
16
  for member in tar.getmembers():
17
17
  member_path = os.path.join(path, member.name)
18
18
  if not is_within_directory(path, member_path):
19
- raise Exception("Attempted Path Traversal in Tar File")
19
+ raise RuntimeError("Attempted Path Traversal in Tar File")
20
20
 
21
21
  tar.extractall(path, members, numeric_owner=numeric_owner)
22
22
 
@@ -2,6 +2,8 @@ import asyncio
2
2
  import os
3
3
  import sys
4
4
 
5
+ from flet.controls.exceptions import FletUnsupportedPlatformException
6
+
5
7
 
6
8
  def get_bool_env_var(name: str):
7
9
  v = os.getenv(name)
@@ -52,7 +54,7 @@ def is_linux_server():
52
54
  # check if it's WSL
53
55
  p = "/proc/version"
54
56
  if os.path.exists(p):
55
- with open(p, "r", encoding="utf-8") as file:
57
+ with open(p, encoding="utf-8") as file:
56
58
  if "microsoft" in file.read():
57
59
  return False # it's WSL, not a server
58
60
  return os.environ.get("DISPLAY") is None
@@ -72,7 +74,7 @@ def get_platform():
72
74
  elif p == "Darwin":
73
75
  return "darwin"
74
76
  else:
75
- raise Exception(f"Unsupported platform: {p}")
77
+ raise FletUnsupportedPlatformException(f"Unsupported platform: {p}")
76
78
 
77
79
 
78
80
  def get_arch():
@@ -84,4 +86,4 @@ def get_arch():
84
86
  elif a.startswith("arm"):
85
87
  return "arm_7"
86
88
  else:
87
- raise Exception(f"Unsupported architecture: {a}")
89
+ raise FletUnsupportedPlatformException(f"Unsupported architecture: {a}")
flet/version.py CHANGED
@@ -10,7 +10,7 @@ from flet.utils import is_mobile, is_windows, which
10
10
  DEFAULT_VERSION = "0.1.0"
11
11
 
12
12
  # will be replaced by CI
13
- version = "0.70.0.dev6519"
13
+ version = "0.70.0.dev6533"
14
14
 
15
15
 
16
16
  def update_version():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet
3
- Version: 0.70.0.dev6519
3
+ Version: 0.70.0.dev6533
4
4
  Summary: Flet for Python - easily build interactive multi-platform apps in Python
5
5
  Author-email: "Appveyor Systems Inc." <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
@@ -1,12 +1,12 @@
1
1
  flet/__init__.py,sha256=jw8lM_mMrtwx6FarCTrg8DWT6-fTCmHVPB7ofMEAAKw,26138
2
2
  flet/app.py,sha256=HSws0Zm4ZO0-Hp2P9h7xirCVnRkKCVXhuekyAXT_9Fo,11883
3
3
  flet/cli.py,sha256=IUM25fY_sqMtl0hlQGhlMQaBb1oNyO0VZeeBgRodhuA,204
4
- flet/version.py,sha256=vbhS2XY-x1G6SuTCkd-JZsbT4-Lem0N9_4exwktm9rU,2512
4
+ flet/version.py,sha256=t1_z8djFU9ZGM7B0Ao0Bj8solG3S4hL3mdlsQEpjxB8,2512
5
5
  flet/auth/__init__.py,sha256=eDqmi0Ki8Resd198S7XxgYa2R14wnNqIXnYhBLPl8fQ,289
6
6
  flet/auth/authorization.py,sha256=hP_36RiRPtSwmK_Yp6MMzAjQdDxbBiEcZ2yFNqyNiRs,357
7
- flet/auth/authorization_service.py,sha256=6N2LvisSt7KI_VgfyCH0OaJ6jTcmXCkAldN1yYlakzQ,6410
7
+ flet/auth/authorization_service.py,sha256=s_VEpiMd5fkuKea3_e5cJh0cDE0p7GTASgpfgwCtdD4,6411
8
8
  flet/auth/group.py,sha256=s6EPK48BV7bOHZ1m7-n2CBaGAMG2d6ApOOzvAzD2-iM,128
9
- flet/auth/oauth_provider.py,sha256=375__ID9b_mi0UwRaMJIderxJIIbAxjcI2QPBvLZR9k,1605
9
+ flet/auth/oauth_provider.py,sha256=VeeG2gnPbXqoAb-vafP8qa_sDtJOfxLnh8zw0PW5KEo,1633
10
10
  flet/auth/oauth_token.py,sha256=etG06HOprSv1ORf5bhBaxoAK6u6-DLy962yt1KgumrI,845
11
11
  flet/auth/user.py,sha256=oOi9zmyf5WDtx7v519cjmO5gLMCZAKgwm9pWx9tK9sU,146
12
12
  flet/auth/providers/__init__.py,sha256=5czPas9IF7bt4SXdKgeHfn_a8ajqEi1BjiLsLkhvR_s,413
@@ -34,8 +34,8 @@ flet/controls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  flet/controls/adaptive_control.py,sha256=Pw0E7z0IlNSe05cQTi5BLElLF3OnlVLzwfvtOQpsRr8,1594
35
35
  flet/controls/alignment.py,sha256=re4jnpuqNPPWs55bf8RB_c9llqcuGhZcCjdNutx2N5M,3257
36
36
  flet/controls/animation.py,sha256=8ZI7XovzJd7y6vs2xDkQwsSdGy191Qn2Wc15VJyfEiU,4391
37
- flet/controls/base_control.py,sha256=sDKpgiB-ig8lZcVmg8S7OMvr7XCq-VJwmaKHoI4RBQs,10745
38
- flet/controls/base_page.py,sha256=KFTGaG1b-wiTm3-dTn__DDrw7GBvQIe8s9LD5X2SqBA,18824
37
+ flet/controls/base_control.py,sha256=9MvEFt288_FNn84ye8SDjkzNg6-i0YflyRR8fgclQgc,10749
38
+ flet/controls/base_page.py,sha256=F1v6aZrO4g1j7HRMTPV9c-TDAcrNrU7-KlkdQS7_ez4,18827
39
39
  flet/controls/blur.py,sha256=taMH4qtILyAFn1qNsgBGRV3z0GSH6V7VKPV3ZSBhOL4,602
40
40
  flet/controls/border.py,sha256=aBxj8OzEoufGPZb5yibsg2SO2OHeBAFmti63-y_oQtY,8808
41
41
  flet/controls/border_radius.py,sha256=ePfpA_uNhR6bfBSmYxy2cO0mZ3FU1r63qX_5RuHWwDM,6605
@@ -43,8 +43,8 @@ flet/controls/box.py,sha256=UAz27hMyzXtUGjgm0bTtVupaEkWqUkhAeA1wR1YKoOs,12726
43
43
  flet/controls/buttons.py,sha256=0mLPx4fBjQNGn-ejMuNu1wHb38_0BGU0JOggmqbUs1E,9943
44
44
  flet/controls/colors.py,sha256=6qKCCEPPCk-oYdqj2FtjufMADepQXPGuriZv04imaX8,16594
45
45
  flet/controls/context.py,sha256=5daq2ixcHNcs2pyYbH9KCe-tHCq2_ebPjvORMs1TtD4,4250
46
- flet/controls/control.py,sha256=12Y_b8g8iSY8FlafeYZpaeJSgZQaKNzBLUof5JW4YlU,4488
47
- flet/controls/control_event.py,sha256=lM3H2V388JUQj9uCbPuUD7t2GxdEwX6F2nBluPzvzBc,3182
46
+ flet/controls/control.py,sha256=PHOZ1beTUiMlsBI6nZOUanPEe4Vx4aIDkXdYsyHtP_g,4419
47
+ flet/controls/control_event.py,sha256=k6EtMI82ahuHimuOU0NUZym_YHlzf6RcYD9jB1WJfbc,3185
48
48
  flet/controls/control_state.py,sha256=7Pi_WirBkE5dmUN0QnQLjSaW17Nj_escRlUvNxlrNR8,433
49
49
  flet/controls/device_info.py,sha256=fWhy73oldll9BZagLcPZG-YKi_wu6caEKCdOwP6SZXA,23465
50
50
  flet/controls/dialog_control.py,sha256=4a1poIK4al6DAsdiV56jE-Q4E-eKrvP12DqYw5HFvYM,507
@@ -60,9 +60,9 @@ flet/controls/keys.py,sha256=YpcAeINKelX3WgSOMF8_T7wMzcFmAXNg-ssPej_NZWY,614
60
60
  flet/controls/layout_control.py,sha256=wF4W4u3MAHLjpin5nH4iOAyoq29v3QrqI6swYnl67js,7301
61
61
  flet/controls/margin.py,sha256=ni5FwkchO1LPKPTKV0Cimvh2YzABi-t5DhOqTS25eIQ,2305
62
62
  flet/controls/multi_view.py,sha256=7RbM1nt8t75qgTKyfemsV06XQ04Mer0Op409Nu9q9Vs,304
63
- flet/controls/object_patch.py,sha256=86jMaZ61u0BDSCkMD93hBwZfVrhpvECFfpIGuZgmVyI,44162
63
+ flet/controls/object_patch.py,sha256=WjJU_Cd-0M1LLFhogcoKx7l6YXrWxBd74xZejP9bGGk,44241
64
64
  flet/controls/padding.py,sha256=AdxAZ5dbg1-Bo8aKeJ7AptUdyjaX7VWBIJto5mBT9Pk,2485
65
- flet/controls/page.py,sha256=Hkxq5mv8UEhtWra9EOA7buytW7Bae3NrlHo-UwTpqj8,30361
65
+ flet/controls/page.py,sha256=5Xv76GBdDbrNnLesDhWol-cKMFG632YDD51z2lqBwN8,30364
66
66
  flet/controls/painting.py,sha256=GCEycacejiCAdA4eZBQlTgxmE2ccXyad4Gy7VsjIwn0,12108
67
67
  flet/controls/query_string.py,sha256=HbepJ8YUjyPj12gMiJRrTpUXdlfS7XQlbRb5AGFX_sM,3577
68
68
  flet/controls/ref.py,sha256=Lde_Nlly6NEtJX_LYv_DxIDkao6w4Buo7Nus4XUPQDA,580
@@ -215,26 +215,26 @@ flet/controls/services/shared_preferences.py,sha256=ec_dMBMozfAalyw1exdXd9ayDY7g
215
215
  flet/controls/services/storage_paths.py,sha256=q6ykCW33IeMhvMQKAWaXZ8HKzsfdUpHGWAC52SM2NAQ,7800
216
216
  flet/controls/services/url_launcher.py,sha256=YfvNGaivvwJ2vrSkxwgQ2R1l3A5wbgY6AxX8n2Fe02U,2735
217
217
  flet/fastapi/__init__.py,sha256=crLmmKE-B-O-cm5MTlXFreYCUnqkw6mK4eIPUUMvSCM,45
218
- flet/messaging/connection.py,sha256=yd7NlEAwAMxhCEhh6mLN-cihYfeJdUlHhx5SycRVct4,1646
219
- flet/messaging/flet_socket_server.py,sha256=bFeC-hlKFhBoVHBYy6o_LzWiuFaUmT-vMT81t5lGEUM,9146
220
- flet/messaging/protocol.py,sha256=JauR9qz-FmFeCypafKE-hpSMEcfMFQ9Di-_82EWMwLc,3950
221
- flet/messaging/pyodide_connection.py,sha256=-bNGKh0nYNtgdJ_nhBGJTF1TNX3vHqgxygetv2ZQwUs,4313
222
- flet/messaging/session.py,sha256=RQkYkZDIKW-l9ShUvbYKPD6ZXgfD4yVz2WERgUnp_OA,12310
218
+ flet/messaging/connection.py,sha256=rfH3diLnek2AbIYTC7Eb1MYbUZ70_Db47fCvK_FkGAA,1655
219
+ flet/messaging/flet_socket_server.py,sha256=-9QoyaUO6KFDGeRk4Hd9CLYJHhoQeqgpcMtf5KHK6I4,9149
220
+ flet/messaging/protocol.py,sha256=KpUN_L9lYolJsoIOKaaISfqIykw_NF6c4w7EttJk4rI,3953
221
+ flet/messaging/pyodide_connection.py,sha256=-2dsrU_QdgdT3gSECcU5eSPGEk65ITww9vNgYU6B3E4,4317
222
+ flet/messaging/session.py,sha256=CEgw_j4E9XYvNnWwei7Mv27TQjklT-XCAPflvK728Vw,12351
223
223
  flet/messaging/session_store.py,sha256=80yy3fjEGJs_60UxS_o2tXl2QCenFb9IVDaJCK8wckY,557
224
224
  flet/pubsub/__init__.py,sha256=qWcHYUa7oQEKysceGCeYG2AgIe0IO18NRXiP47jb_6o,126
225
225
  flet/pubsub/pubsub_client.py,sha256=Wamm3T_md2ObOu5odN5-bPuMgt9Si8YvbYhSC2TtAIA,1245
226
226
  flet/pubsub/pubsub_hub.py,sha256=7fEHZP9vON5LKt6hzg38EcyOtfyHwyJGG3NUynNe2LQ,6546
227
- flet/security/__init__.py,sha256=LcBftVee6pXMB2MiDsc0PPUXnTlR2CT53VAPiPadaHI,2189
227
+ flet/security/__init__.py,sha256=FlN9jzrARaMNxLZR8EL5jZaMoqBu_1LunnZJsOAMBLA,2191
228
228
  flet/testing/__init__.py,sha256=Yb9e6h11b2hV7O3TuqsJ7zwFAgNcbB7tY7Gp2ssxtN4,176
229
229
  flet/testing/finder.py,sha256=Rqv4qwjMcVx4ZYAJgZgGT2GVH5OR4ZgoQeKj5ZsFsRc,346
230
- flet/testing/flet_test_app.py,sha256=uCIqCK6sGfC8rnNMmNYWgm8i_LO0ftZSCFM3J6p2_tg,17538
230
+ flet/testing/flet_test_app.py,sha256=aZJCLQJzveWWH0Z9y1KvY6nIjdJHU77ap2hcWcdFQjM,17541
231
231
  flet/testing/tester.py,sha256=_DSRFQQoGISve5JR2nq3AdSbUf18E6FfG3ytRD5tAfo,4946
232
232
  flet/utils/__init__.py,sha256=fWHBR8S4g9mX1q9cFA8khZLGKDb9kIbiyH5_ny87lg8,1823
233
233
  flet/utils/browser.py,sha256=Z2PomJjClBXRRiPvGP7WRzbguvXQ8W2HQAzd_A5cmvE,157
234
234
  flet/utils/classproperty.py,sha256=9utA2znjTkQO9tQ7T8EuaXmBVQeQ1NAhteAc0PZdHHc,271
235
235
  flet/utils/deprecated.py,sha256=MzGbWwPlO6EZJNqkFFWd6ZHb3dIQd02WAKEru0yyFEI,3259
236
236
  flet/utils/deprecated_enum.py,sha256=G_nJMdBkkPcCKjAWZUK3IWA8p0cNG6VtdYtI---04CU,1244
237
- flet/utils/files.py,sha256=TQ1FlFQEIzKAj2OmCLbDm_jW4QUlU25t78EihbrJbe4,1841
237
+ flet/utils/files.py,sha256=x1J4UkGeN_X4TJ98oRUc--0Nn3d3EYAc6rgMShqYQag,1844
238
238
  flet/utils/from_dict.py,sha256=16jD0SQd_2mO7LK-2zT5MFDSsQYke2Gt7e_Fz_l6Nxw,3559
239
239
  flet/utils/hashing.py,sha256=bxUIJ-uS8Aap8l350V9hDwAxaAWuFbjOgnXfMXp7NaY,419
240
240
  flet/utils/json_utils.py,sha256=OY2lIsoJ6Q9Tz1aX89SET3KHzT5TC1DQp95Mv0f2Jcg,279
@@ -243,12 +243,12 @@ flet/utils/network.py,sha256=eP_ChGF3GSBhQ8JehDDdlbMBFoIPyVdHoJZ4l3RdMJ0,437
243
243
  flet/utils/object_model.py,sha256=OC0i5CXYQ4DsVsIKP4KpnYBE5hvWlPIi_SrypFPtBXw,2667
244
244
  flet/utils/once.py,sha256=SsQ2mMm6NVrfr7Cd6jhKY9zVvCS6eGm4qkKSJT63occ,347
245
245
  flet/utils/pip.py,sha256=cPa4ItpVJeke1pr8HfE8w00FloHPCKoOdlQtwVHw4kk,1773
246
- flet/utils/platform_utils.py,sha256=U4cqV3EPi5QNYjbhfZmtk41-KMtI_P7KvVdnZzMOgJA,1927
246
+ flet/utils/platform_utils.py,sha256=oGnHM1d-jL9brQWQXSdPeE22-kZmmyJzOPXgA952vS4,2039
247
247
  flet/utils/slugify.py,sha256=e-lsoDc2_dk5jQnySaHCU83AA4O6mguEgCEdk2smW2Y,466
248
248
  flet/utils/strings.py,sha256=R63_i7PdSAStCDPJ-O_WHBt3H02JQ14GSbnjLIpPTUc,178
249
249
  flet/utils/vector.py,sha256=pYZzjldBWCZbSeSkZ8VmujwcZC7VBWk1NLBPA-2th3U,3207
250
- flet-0.70.0.dev6519.dist-info/METADATA,sha256=X4mQaWAWPqgZEb8BTKmD9393Enjl5agDWPm9WVWC5Ps,6109
251
- flet-0.70.0.dev6519.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
252
- flet-0.70.0.dev6519.dist-info/entry_points.txt,sha256=mbBhHNUnLHiDqR36WeJrfLJU0Y0y087-M4wagQmaQ_Y,39
253
- flet-0.70.0.dev6519.dist-info/top_level.txt,sha256=HbLrSnWJX2jZOEZAI14cGzW8Q5BbOGTtE-7knD5FDh0,5
254
- flet-0.70.0.dev6519.dist-info/RECORD,,
250
+ flet-0.70.0.dev6533.dist-info/METADATA,sha256=z26P2TsFAMz2PbjVhWx9YiqD_ODZsftWDSE3VQn3F8Q,6109
251
+ flet-0.70.0.dev6533.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
252
+ flet-0.70.0.dev6533.dist-info/entry_points.txt,sha256=mbBhHNUnLHiDqR36WeJrfLJU0Y0y087-M4wagQmaQ_Y,39
253
+ flet-0.70.0.dev6533.dist-info/top_level.txt,sha256=HbLrSnWJX2jZOEZAI14cGzW8Q5BbOGTtE-7knD5FDh0,5
254
+ flet-0.70.0.dev6533.dist-info/RECORD,,