tinybird 0.0.1.dev121__py3-none-any.whl → 0.0.1.dev122__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 tinybird might be problematic. Click here for more details.

tinybird/tb/__cli__.py CHANGED
@@ -4,5 +4,5 @@ __description__ = 'Tinybird Command Line Tool'
4
4
  __url__ = 'https://www.tinybird.co/docs/cli/introduction.html'
5
5
  __author__ = 'Tinybird'
6
6
  __author_email__ = 'support@tinybird.co'
7
- __version__ = '0.0.1.dev121'
8
- __revision__ = '3609440'
7
+ __version__ = '0.0.1.dev122'
8
+ __revision__ = '2212d5c'
@@ -150,7 +150,7 @@ def build_project(project: Project, tb_client: TinyB, file_changed: Optional[str
150
150
  except Exception as e:
151
151
  click.echo(FeedbackManager.error_exception(error=f"Error appending fixtures for '{ds_name}': {e}"))
152
152
 
153
- feedback = result.get("feedback", [])
153
+ feedback = build.get("feedback", [])
154
154
  for f in feedback:
155
155
  click.echo(
156
156
  FeedbackManager.warning(message=f"△ {f.get('level')}: {f.get('resource')}: {f.get('message')}")
@@ -934,7 +934,7 @@ async def process_file(
934
934
  return params
935
935
 
936
936
  if DataFileExtensions.DATASOURCE in filename:
937
- doc = parse_datasource(filename)
937
+ doc = parse_datasource(filename).datafile
938
938
  node = doc.nodes[0]
939
939
  deps: List[str] = []
940
940
  # reemplace tables on materialized columns
@@ -1094,7 +1094,7 @@ async def process_file(
1094
1094
  return resources
1095
1095
 
1096
1096
  elif DataFileExtensions.PIPE in filename:
1097
- doc = parse_pipe(filename)
1097
+ doc = parse_pipe(filename).datafile
1098
1098
  version = f"__v{doc.version}" if doc.version is not None else ""
1099
1099
  name = os.path.basename(filename).split(".")[0]
1100
1100
  description = doc.description if doc.description is not None else ""
@@ -17,7 +17,7 @@ from enum import Enum
17
17
  from io import StringIO
18
18
  from pathlib import Path
19
19
  from string import Template
20
- from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple, cast
20
+ from typing import Any, Callable, Dict, Iterable, List, Literal, NamedTuple, Optional, Tuple, cast
21
21
 
22
22
  import click
23
23
  from croniter import croniter
@@ -1163,6 +1163,19 @@ def parse_table_structure(schema: str) -> List[Dict[str, Any]]:
1163
1163
  return _parse_table_structure(schema)
1164
1164
 
1165
1165
 
1166
+ @dataclass
1167
+ class DatafileParseWarning:
1168
+ message: str
1169
+
1170
+ def __str__(self) -> str:
1171
+ return self.message
1172
+
1173
+
1174
+ class ParseResult(NamedTuple):
1175
+ datafile: Datafile
1176
+ warnings: list[DatafileParseWarning]
1177
+
1178
+
1166
1179
  def parse(
1167
1180
  s: str,
1168
1181
  default_node: Optional[str] = None,
@@ -1170,10 +1183,10 @@ def parse(
1170
1183
  replace_includes: bool = True,
1171
1184
  skip_eval: bool = False,
1172
1185
  kind: Optional[DatafileKind] = None,
1173
- ) -> Datafile:
1186
+ ) -> ParseResult:
1174
1187
  """
1175
1188
  Parses `s` string into a document
1176
- >>> d = parse("NODE \\"test_01\\"\\n DESCRIPTION this is a node that does whatever\\nSQL >\\n\\n SELECT * from test_00\\n\\n\\nNODE \\"test_02\\"\\n DESCRIPTION this is a node that does whatever\\nSQL >\\n\\n SELECT * from test_01\\n WHERE a > 1\\n GROUP by a\\n")
1189
+ >>> d, w = parse("NODE \\"test_01\\"\\n DESCRIPTION this is a node that does whatever\\nSQL >\\n\\n SELECT * from test_00\\n\\n\\nNODE \\"test_02\\"\\n DESCRIPTION this is a node that does whatever\\nSQL >\\n\\n SELECT * from test_01\\n WHERE a > 1\\n GROUP by a\\n")
1177
1190
  >>> len(d.nodes)
1178
1191
  2
1179
1192
  >>> d.nodes[0]
@@ -1184,6 +1197,8 @@ def parse(
1184
1197
  lines = list(StringIO(s, newline=None))
1185
1198
 
1186
1199
  doc = Datafile()
1200
+ warnings: List[DatafileParseWarning] = []
1201
+
1187
1202
  if kind is not None:
1188
1203
  doc.set_kind(kind)
1189
1204
  doc.raw = list(StringIO(s, newline=None))
@@ -1212,16 +1227,30 @@ def parse(
1212
1227
 
1213
1228
  return error_if_multiline
1214
1229
 
1215
- def deprecated(func: Callable[..., Any]) -> Callable[..., Any]:
1216
- @functools.wraps(func)
1217
- def raise_deprecation_error(*args: Any, **kwargs: Any) -> Any:
1218
- raise DatafileSyntaxError(
1219
- f"{kwargs['cmd'].upper()} has been deprecated",
1220
- lineno=kwargs["lineno"],
1221
- pos=1,
1222
- )
1230
+ def deprecated(severity: Literal["error", "warning"]) -> Callable[..., Any]:
1231
+ def inner(func: Callable[..., Any]) -> Callable[..., Any]:
1232
+ @functools.wraps(func)
1233
+ def raise_deprecation_error(*args: Any, **kwargs: Any) -> Any:
1234
+ raise DatafileSyntaxError(
1235
+ f"{kwargs['cmd'].upper()} has been deprecated",
1236
+ lineno=kwargs["lineno"],
1237
+ pos=1,
1238
+ )
1223
1239
 
1224
- return raise_deprecation_error
1240
+ @functools.wraps(func)
1241
+ def add_deprecation_warning(*args: Any, **kwargs: Any) -> Any:
1242
+ warnings.append(
1243
+ DatafileParseWarning(
1244
+ message=f"{kwargs['cmd'].upper()} has been deprecated and will be ignored.",
1245
+ )
1246
+ )
1247
+
1248
+ if severity == "error":
1249
+ return raise_deprecation_error
1250
+ elif severity == "warning":
1251
+ return add_deprecation_warning
1252
+
1253
+ return inner
1225
1254
 
1226
1255
  def not_supported_yet(extra_message: str = "") -> Callable[..., Any]:
1227
1256
  def inner(func: Callable[..., Any]) -> Callable[..., Any]:
@@ -1288,7 +1317,7 @@ def parse(
1288
1317
  pos=1,
1289
1318
  )
1290
1319
 
1291
- @deprecated
1320
+ @deprecated(severity="error")
1292
1321
  def sources(x: str, **kwargs: Any) -> None:
1293
1322
  pass # Deprecated
1294
1323
 
@@ -1423,7 +1452,7 @@ def parse(
1423
1452
  except FileNotFoundError:
1424
1453
  raise IncludeFileNotFoundException(f, lineno)
1425
1454
 
1426
- @deprecated
1455
+ @deprecated(severity="warning")
1427
1456
  def version(*args: str, **kwargs: Any) -> None:
1428
1457
  pass # whatever, it's deprecated
1429
1458
 
@@ -1634,7 +1663,7 @@ def parse(
1634
1663
  traceback.print_tb(e.__traceback__)
1635
1664
  raise ParseException(f"Unexpected error: {e}", lineno=lineno)
1636
1665
 
1637
- return doc
1666
+ return ParseResult(datafile=doc, warnings=warnings)
1638
1667
 
1639
1668
 
1640
1669
  class ImportReplacements:
@@ -29,7 +29,9 @@ async def format_datasource(
29
29
  if datafile:
30
30
  doc = datafile
31
31
  else:
32
- doc = parse_datasource(filename, replace_includes=replace_includes, skip_eval=skip_eval, content=content)
32
+ doc = parse_datasource(
33
+ filename, replace_includes=replace_includes, skip_eval=skip_eval, content=content
34
+ ).datafile
33
35
 
34
36
  file_parts: List[str] = []
35
37
  if for_diff:
@@ -136,7 +136,7 @@ async def format_pipe(
136
136
  if datafile:
137
137
  doc = datafile
138
138
  else:
139
- doc = parse_pipe(filename, replace_includes=replace_includes, skip_eval=skip_eval, content=content)
139
+ doc = parse_pipe(filename, replace_includes=replace_includes, skip_eval=skip_eval, content=content).datafile
140
140
 
141
141
  file_parts: List[str] = []
142
142
  format_maintainer(file_parts, doc)
@@ -162,7 +162,7 @@ async def format_pipe(
162
162
  if "." in include_file
163
163
  else eval_var(include_file)
164
164
  )
165
- included_pipe = parse_pipe(include_file, skip_eval=skip_eval)
165
+ included_pipe = parse_pipe(include_file, skip_eval=skip_eval).datafile
166
166
  pipe_nodes = doc.nodes.copy()
167
167
  for included_node in included_pipe.nodes.copy():
168
168
  unrolled_included_node = next(
@@ -5,9 +5,9 @@ import click
5
5
 
6
6
  from tinybird.sql_template import render_template_with_secrets
7
7
  from tinybird.tb.modules.datafile.common import (
8
- Datafile,
9
8
  DatafileKind,
10
9
  DatafileSyntaxError,
10
+ ParseResult,
11
11
  format_filename,
12
12
  parse,
13
13
  )
@@ -23,7 +23,7 @@ def parse_datasource(
23
23
  hide_folders: bool = False,
24
24
  add_context_to_datafile_syntax_errors: bool = True,
25
25
  secrets: Optional[Dict[str, str]] = None,
26
- ) -> Datafile:
26
+ ) -> ParseResult:
27
27
  basepath = ""
28
28
  if not content:
29
29
  with open(filename) as file:
@@ -35,7 +35,7 @@ def parse_datasource(
35
35
  s = render_template_with_secrets(filename, s, secrets=secrets or {})
36
36
  filename = format_filename(filename, hide_folders)
37
37
  try:
38
- doc = parse(
38
+ doc, warnings = parse(
39
39
  s, "default", basepath, replace_includes=replace_includes, skip_eval=skip_eval, kind=DatafileKind.datasource
40
40
  )
41
41
  doc.validate()
@@ -52,4 +52,4 @@ def parse_datasource(
52
52
  FeedbackManager.error_parsing_file(filename=filename, lineno=e.lineno, error=e)
53
53
  ) from None
54
54
 
55
- return doc
55
+ return ParseResult(datafile=doc, warnings=warnings)
@@ -5,9 +5,9 @@ import click
5
5
 
6
6
  from tinybird.sql_template import get_template_and_variables, render_sql_template
7
7
  from tinybird.tb.modules.datafile.common import (
8
- Datafile,
9
8
  DatafileKind,
10
9
  DatafileSyntaxError,
10
+ ParseResult,
11
11
  format_filename,
12
12
  parse,
13
13
  )
@@ -24,7 +24,7 @@ def parse_pipe(
24
24
  hide_folders: bool = False,
25
25
  add_context_to_datafile_syntax_errors: bool = True,
26
26
  secrets: Optional[Dict[str, str]] = None,
27
- ) -> Datafile:
27
+ ) -> ParseResult:
28
28
  basepath = ""
29
29
  if not content:
30
30
  with open(filename) as file:
@@ -37,7 +37,7 @@ def parse_pipe(
37
37
  try:
38
38
  sql = ""
39
39
  try:
40
- doc = parse(
40
+ doc, warnings = parse(
41
41
  s, basepath=basepath, replace_includes=replace_includes, skip_eval=skip_eval, kind=DatafileKind.pipe
42
42
  )
43
43
  doc.validate()
@@ -86,4 +86,4 @@ def parse_pipe(
86
86
  raise click.ClickException(FeedbackManager.error_not_found_include(filename=e, lineno=e.lineno))
87
87
  except ModuleNotFoundError:
88
88
  pass
89
- return doc
89
+ return ParseResult(datafile=doc, warnings=warnings)
@@ -1091,7 +1091,7 @@ async def process_file(
1091
1091
  return params
1092
1092
 
1093
1093
  if DataFileExtensions.DATASOURCE in filename:
1094
- doc = parse_datasource(filename)
1094
+ doc, warnings = parse_datasource(filename)
1095
1095
  node = doc.nodes[0]
1096
1096
  deps: List[str] = []
1097
1097
  # reemplace tables on materialized columns
@@ -1251,7 +1251,7 @@ async def process_file(
1251
1251
  return resources
1252
1252
 
1253
1253
  elif DataFileExtensions.PIPE in filename:
1254
- doc = parse_pipe(filename)
1254
+ doc, warnings = parse_pipe(filename)
1255
1255
  version = f"__v{doc.version}" if doc.version is not None else ""
1256
1256
  name = os.path.basename(filename).split(".")[0]
1257
1257
  description = doc.description if doc.description is not None else ""
@@ -57,13 +57,13 @@ class Project:
57
57
 
58
58
  def get_pipe_datafile(self, filename: str) -> Optional[Datafile]:
59
59
  try:
60
- return parse_pipe(filename)
60
+ return parse_pipe(filename).datafile
61
61
  except Exception:
62
62
  return None
63
63
 
64
64
  def get_datasource_datafile(self, filename: str) -> Optional[Datafile]:
65
65
  try:
66
- return parse_datasource(filename)
66
+ return parse_datasource(filename).datafile
67
67
  except Exception:
68
68
  return None
69
69
 
@@ -247,6 +247,8 @@ class Shell:
247
247
  self.handle_auth()
248
248
  elif cmd == "workspace":
249
249
  self.handle_workspace()
250
+ elif cmd == "deploy":
251
+ self.handle_deploy()
250
252
  elif cmd == "mock":
251
253
  self.handle_mock(arg)
252
254
  elif cmd == "tb":
@@ -256,13 +258,16 @@ class Shell:
256
258
  self.default(line)
257
259
 
258
260
  def handle_build(self):
259
- click.echo(FeedbackManager.error(message="'tb build' command is not available in watch mode"))
261
+ click.echo(FeedbackManager.error(message="'tb build' is not available in the dev shell"))
260
262
 
261
263
  def handle_auth(self):
262
- click.echo(FeedbackManager.error(message="'tb auth' command is not available in watch mode"))
264
+ click.echo(FeedbackManager.error(message="'tb auth' is not available in the dev shell"))
263
265
 
264
266
  def handle_workspace(self):
265
- click.echo(FeedbackManager.error(message="'tb workspace' command is not available in watch mode"))
267
+ click.echo(FeedbackManager.error(message="'tb workspace' is not available in the dev shell"))
268
+
269
+ def handle_deploy(self):
270
+ click.echo(FeedbackManager.error(message="'tb deploy' is not available in the dev shell"))
266
271
 
267
272
  def handle_mock(self, arg):
268
273
  if "mock" in arg.strip().lower():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tinybird
3
- Version: 0.0.1.dev121
3
+ Version: 0.0.1.dev122
4
4
  Summary: Tinybird Command Line Tool
5
5
  Home-page: https://www.tinybird.co/docs/cli/introduction.html
6
6
  Author: Tinybird
@@ -12,12 +12,12 @@ tinybird/syncasync.py,sha256=IPnOx6lMbf9SNddN1eBtssg8vCLHMt76SuZ6YNYm-Yk,27761
12
12
  tinybird/tornado_template.py,sha256=jjNVDMnkYFWXflmT8KU_Ssbo5vR8KQq3EJMk5vYgXRw,41959
13
13
  tinybird/ch_utils/constants.py,sha256=aYvg2C_WxYWsnqPdZB1ZFoIr8ZY-XjUXYyHKE9Ansj0,3890
14
14
  tinybird/ch_utils/engine.py,sha256=BZuPM7MFS7vaEKK5tOMR2bwSAgJudPrJt27uVEwZmTY,40512
15
- tinybird/tb/__cli__.py,sha256=1cGs_hmW4A_t0Pyv4jLB4ukdRk4CeneW1ZKTnQ0BBEI,252
15
+ tinybird/tb/__cli__.py,sha256=Oo7cwqVzKzr6tu9MxOCBZW_iDdHgMq6VAyQHaHaWlHw,252
16
16
  tinybird/tb/cli.py,sha256=uDLwcbwSJfVFw-pceijZJqaq26z5jNsey0QaUGFjt7w,1097
17
17
  tinybird/tb/client.py,sha256=oa0pR46WvzDoqpyaDU-lRu33I0cZhtZVDqDQz2RHMWQ,56085
18
18
  tinybird/tb/config.py,sha256=3bEyh6sECiAm41L9Nr_ALkvprMyuzvQSvVPrljFbg68,3790
19
19
  tinybird/tb/modules/auth.py,sha256=_OeYnmTH83lnqCgQEdS6K0bx1KBUeRmZk2M7JnRmWpk,9037
20
- tinybird/tb/modules/build.py,sha256=4yP8QJd2YYr1w9XWCSRqB6CztfVzN6gL75p32UYJvdc,15566
20
+ tinybird/tb/modules/build.py,sha256=vNTrSSYRNtzqctKsATztDGCZGSYxGCfZUrLxb-pyJHI,15565
21
21
  tinybird/tb/modules/cicd.py,sha256=A7zJZF9HkJ6NPokplgNjmefMrpUlRbFxBbjMZhq5OTI,7110
22
22
  tinybird/tb/modules/cli.py,sha256=Y_5hu9xwyTIZw4bQoe0MYLnRIzmR7hUjql_oZBxd4Qg,13407
23
23
  tinybird/tb/modules/common.py,sha256=J2Wjt1jTVMyUjQfgMKPwBKZ2qjHH8Zw-WvEYz0Kuc7Y,83466
@@ -43,10 +43,10 @@ tinybird/tb/modules/materialization.py,sha256=yIns8ypdFVLWwuCcvAZPBChsuJl2DIxJe6
43
43
  tinybird/tb/modules/mock.py,sha256=Z_1nYMO8mmjZkBjikqHNqSd4ssdmcfaXUqIh8jY-z6o,4519
44
44
  tinybird/tb/modules/open.py,sha256=OuctINN77oexpSjth9uoIZPCelKO4Li-yyVxeSnk1io,1371
45
45
  tinybird/tb/modules/pipe.py,sha256=AQKEDagO6e3psPVjJkS_MDbn8aK-apAiLp26k7jgAV0,2432
46
- tinybird/tb/modules/project.py,sha256=Jpoi-3ybIixN8bHCqOMnuaKByXjrdN_Gvlpa24L-e4U,3124
46
+ tinybird/tb/modules/project.py,sha256=RdVOzJiuFPqkCzPhzGetbgcFeiMEn9IMviFCG58XKgI,3142
47
47
  tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
48
48
  tinybird/tb/modules/secret.py,sha256=rhCRxHKSiUZ4iYY5_EKH57iHzA2mZtjCyuHRsQcA-DY,2823
49
- tinybird/tb/modules/shell.py,sha256=swVozzVnECuHrQt1BD2Vl14LipFql6ESgc3Ym4mKYog,13939
49
+ tinybird/tb/modules/shell.py,sha256=cvT0EKpnSRHfuo3avykBRMsCwLBqmzSR7sNUdbQ6lXA,14116
50
50
  tinybird/tb/modules/table.py,sha256=4XrtjM-N0zfNtxVkbvLDQQazno1EPXnxTyo7llivfXk,11035
51
51
  tinybird/tb/modules/tag.py,sha256=anPmMUBc-TbFovlpFi8GPkKA18y7Y0GczMsMms5TZsU,3502
52
52
  tinybird/tb/modules/telemetry.py,sha256=KEvjbzUsyz3zrNewJLkxoNHRrVJcb4jtkGfIfVLfgfs,10452
@@ -55,21 +55,21 @@ tinybird/tb/modules/token.py,sha256=2fmKwu10_M0pqs6YmJVeILR9ZQB0ejRAET86agASbKM,
55
55
  tinybird/tb/modules/watch.py,sha256=poNJOUNDESDNn80H2dHvE6X6pIu-t9MZFi59_TxVN2U,8822
56
56
  tinybird/tb/modules/workspace.py,sha256=SlK08psp0tu5t_URHyIczm696buW6KD6FPs9Lg1aNRE,6614
57
57
  tinybird/tb/modules/workspace_members.py,sha256=RYLpyPM1ECCasHRg3uvpckzXplX0_KgNFsSPZn_i6qk,8744
58
- tinybird/tb/modules/datafile/build.py,sha256=ltQ6ZEYwteYRJNeCgArl5iOWXilnEyUTR-Rd2NIKC5M,50955
58
+ tinybird/tb/modules/datafile/build.py,sha256=d_h3pRFDPFrDKGhpFx2iejY25GuB2k8yfNouj6s8caw,50973
59
59
  tinybird/tb/modules/datafile/build_common.py,sha256=LU24kAQmxDJIyoIapDaYG-SU3P4FrMG9UBf8m9PgVSI,4565
60
60
  tinybird/tb/modules/datafile/build_datasource.py,sha256=nXEQ0qHdq2ai7jJTv8H2d7eeDPBYzLn8VY7zMtOYb8M,17382
61
61
  tinybird/tb/modules/datafile/build_pipe.py,sha256=6Cwjf3BKEF3-oQ9PipsQfK-Z43nSwtA4qJAUoysI7Uc,11385
62
- tinybird/tb/modules/datafile/common.py,sha256=7vlw2tb6FOlq65C_ZdDbgjOR4ni7ysAwjnd05GNdjt8,84365
62
+ tinybird/tb/modules/datafile/common.py,sha256=6yAZyMChNaR5bLjCpPhgEpJUllgZ_SthdTZmUgf0YzU,85320
63
63
  tinybird/tb/modules/datafile/diff.py,sha256=MTmj53RYjER4neLgWVjabn-FKVFgh8h8uYiBo55lFQg,6757
64
64
  tinybird/tb/modules/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
65
65
  tinybird/tb/modules/datafile/fixture.py,sha256=V3WGfPLIR78el3oCNWNkySWs6LxIufyIM0mDrrT3aWc,1131
66
66
  tinybird/tb/modules/datafile/format_common.py,sha256=WaNV4tXrQU5gjV6MJP-5TGqg_Bre6ilNS8emvFl-X3c,1967
67
- tinybird/tb/modules/datafile/format_datasource.py,sha256=FgjwxNe0rYVeZbuxnZ5FnD_1ceCENUX2QABKWOznvAA,6159
68
- tinybird/tb/modules/datafile/format_pipe.py,sha256=58iSTrJ5lg-IsbpX8TQumQTuZ6UIotMsCIkNJd1M-pM,7418
69
- tinybird/tb/modules/datafile/parse_datasource.py,sha256=cW08P_IaSl3kI3-ApjPW9BZTNaClkeC28Y7nwEw6KRE,1707
70
- tinybird/tb/modules/datafile/parse_pipe.py,sha256=cGz83DLCZ9y4N9_h5PumpUy3QzhBGu1JC68h1siy5WM,3472
67
+ tinybird/tb/modules/datafile/format_datasource.py,sha256=iWbeXruxC7OBmjNgurWt6ymcJlYzxfKwkGnhpcoSKEo,6190
68
+ tinybird/tb/modules/datafile/format_pipe.py,sha256=DUGdmlzI146YDqTwW-7kSIOXocz4AH-md_LFGUm9hrc,7436
69
+ tinybird/tb/modules/datafile/parse_datasource.py,sha256=p-qSdmDF7xbXt4PrQQc8q8aFa93kVbLpU4hIi6d3QH4,1764
70
+ tinybird/tb/modules/datafile/parse_pipe.py,sha256=WuQlYW51tflbcp2iFapJ7bxa9IkegD6Z20f4nXL78Xw,3529
71
71
  tinybird/tb/modules/datafile/pipe_checker.py,sha256=LnDLGIHLJ3N7qHb2ptEbPr8CoczNfGwpjOY8EMdxfHQ,24649
72
- tinybird/tb/modules/datafile/playground.py,sha256=iVZ42pGW8q88Nu4WEe2KlyyDDSafIwzkV-MNVaZT6cY,56548
72
+ tinybird/tb/modules/datafile/playground.py,sha256=94tOydeg5iQ3TQAdEWQWxLhx5Emz6xh0bEwLSao44-Y,56568
73
73
  tinybird/tb/modules/datafile/pull.py,sha256=l6bIglY8b-tTIWgEYezf4kXjS0QHAVz4iOWLuNwe7Ps,5970
74
74
  tinybird/tb/modules/tinyunit/tinyunit.py,sha256=tVynlV16gt1ex0fDmCPmcABQYyzjVnnycHq1Ou3kU0c,11718
75
75
  tinybird/tb/modules/tinyunit/tinyunit_lib.py,sha256=hGh1ZaXC1af7rKnX7222urkj0QJMhMWclqMy59dOqwE,1922
@@ -79,8 +79,8 @@ tinybird/tb_cli_modules/config.py,sha256=IsgdtFRnUrkY8-Zo32lmk6O7u3bHie1QCxLwgp4
79
79
  tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
80
80
  tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
81
81
  tinybird/tb_cli_modules/telemetry.py,sha256=Hh2Io8ZPROSunbOLuMvuIFU4TqwWPmQTqal4WS09K1A,10449
82
- tinybird-0.0.1.dev121.dist-info/METADATA,sha256=uKlfeGHHiFIM2jv7MxwcZfzCON7xyo3ErBcxCbSLKTc,1612
83
- tinybird-0.0.1.dev121.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
84
- tinybird-0.0.1.dev121.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
85
- tinybird-0.0.1.dev121.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
86
- tinybird-0.0.1.dev121.dist-info/RECORD,,
82
+ tinybird-0.0.1.dev122.dist-info/METADATA,sha256=HpwGTwnv_wbGFBtuqQvt-DgJwysrb93Z0DblQh-HqTo,1612
83
+ tinybird-0.0.1.dev122.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
84
+ tinybird-0.0.1.dev122.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
85
+ tinybird-0.0.1.dev122.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
86
+ tinybird-0.0.1.dev122.dist-info/RECORD,,