tinybird 0.0.1.dev165__py3-none-any.whl → 0.0.1.dev167__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.

@@ -146,10 +146,9 @@ class TableDetails:
146
146
  def is_replacing_engine(self) -> bool:
147
147
  if self.engine:
148
148
  engine_lower = self.engine.lower()
149
- is_aggregating = "aggregatingmergetree" in engine_lower
150
149
  is_replacing = "replacingmergetree" in engine_lower
151
150
  is_collapsing = "collapsingmergetree" in engine_lower
152
- return is_aggregating or is_replacing or is_collapsing
151
+ return is_replacing or is_collapsing
153
152
  return False
154
153
 
155
154
  def diff_ttl(self, new_ttl: str) -> bool:
@@ -169,6 +168,10 @@ class TableDetails:
169
168
  @property
170
169
  def sorting_key(self) -> Optional[str]:
171
170
  _sorting_key = self.details.get("sorting_key", None)
171
+ # TODO: This should use ENABLED_ENGINES to guess if the sorting key is required or not
172
+ # Also checking this and raising an error in a getter is a bit of an anti-pattern,
173
+ # a data source could have a "wrong" sorting key and we won't be able to even show it in the API.
174
+ # All these checks be performed only on creation time.
172
175
  if self.is_replacing_engine() and not _sorting_key:
173
176
  raise ValueError(f"SORTING_KEY must be defined for the {self.engine} engine")
174
177
  if self.is_mergetree_family():
tinybird/tb/__cli__.py CHANGED
@@ -4,5 +4,5 @@ __description__ = 'Tinybird Command Line Tool'
4
4
  __url__ = 'https://www.tinybird.co/docs/forward/commands'
5
5
  __author__ = 'Tinybird'
6
6
  __author_email__ = 'support@tinybird.co'
7
- __version__ = '0.0.1.dev165'
8
- __revision__ = '154a5d7'
7
+ __version__ = '0.0.1.dev167'
8
+ __revision__ = '1b40d30'
@@ -576,7 +576,10 @@ def create_deployment(
576
576
  sys.exit(0)
577
577
  elif status == "failed":
578
578
  click.echo(FeedbackManager.error(message="Deployment failed"))
579
- sys_exit("deployment_error", "Deployment failed" + str(deployment.get("errors")))
579
+ sys_exit(
580
+ "deployment_error",
581
+ f"Deployment failed. Errors: {str(deployment.get('errors') + deployment.get('feedback'))}",
582
+ )
580
583
  else:
581
584
  click.echo(FeedbackManager.error(message=f"Unknown deployment result {status}"))
582
585
  except Exception as e:
@@ -606,7 +609,10 @@ def create_deployment(
606
609
  if auto:
607
610
  click.echo(FeedbackManager.error(message="Rolling back deployment"))
608
611
  discard_deployment(client.host, HEADERS, wait=wait)
609
- sys_exit("deployment_error", "Deployment failed: " + str(deployment.get("errors")))
612
+ sys_exit(
613
+ "deployment_error",
614
+ f"Deployment failed. Errors: {str(deployment.get('errors') + deployment.get('feedback'))}",
615
+ )
610
616
 
611
617
  if deployment.get("status") == "data_ready":
612
618
  break
@@ -1,12 +1,19 @@
1
1
  import hashlib
2
+ import json
2
3
  import logging
3
4
  import os
4
5
  import re
5
6
  import subprocess
6
- from typing import Any, Dict
7
+ import time
8
+ from typing import Any, Dict, Optional
7
9
 
10
+ import boto3
11
+ import click
8
12
  import requests
9
13
 
14
+ import docker
15
+ from docker.client import DockerClient
16
+ from docker.models.containers import Container
10
17
  from tinybird.tb.client import AuthNoTokenException, TinyB
11
18
  from tinybird.tb.modules.config import CLIConfig
12
19
  from tinybird.tb.modules.exceptions import CLILocalException
@@ -102,22 +109,328 @@ def get_local_tokens() -> Dict[str, str]:
102
109
  # ruff: noqa: ASYNC210
103
110
  return requests.get(f"{TB_LOCAL_ADDRESS}/tokens").json()
104
111
  except Exception:
112
+ # Check if tinybird-local is running using docker client (some clients use podman and won't have docker cmd)
105
113
  try:
106
- # Check if tinybird-local is running with docker, in case it's a config issue
107
- output = subprocess.check_output(["docker", "ps"], text=True)
108
- header_row = next((line for line in output.splitlines() if "CONTAINER ID" in line), "")
109
- tb_local_row = next(
110
- (line for line in output.splitlines() if TB_CONTAINER_NAME in line),
111
- f"{TB_CONTAINER_NAME} not found in output",
114
+ docker_client = get_docker_client()
115
+ container = get_existing_container_with_matching_env(docker_client, TB_CONTAINER_NAME, {})
116
+
117
+ output = {}
118
+ if container:
119
+ output = container.attrs
120
+ add_telemetry_event(
121
+ "docker_debug",
122
+ data={
123
+ "container_attrs": output,
124
+ },
125
+ )
126
+
127
+ if container and container.status == "running":
128
+ if container.health == "healthy":
129
+ raise CLILocalException(
130
+ FeedbackManager.error(
131
+ message=(
132
+ "Looks like Tinybird Local is running but we are not able to connect to it.\n\n"
133
+ "If you've run it manually using different host or port, please set the environment variables "
134
+ "TB_LOCAL_HOST and TB_LOCAL_PORT to match the ones you're using.\n"
135
+ "If you're not sure about this, please run `tb local restart` and try again."
136
+ )
137
+ )
138
+ )
139
+ raise CLILocalException(
140
+ FeedbackManager.error(
141
+ message=(
142
+ "Tinybird Local is running but it's unhealthy. Please check if it's running and try again.\n"
143
+ "If the problem persists, please run `tb local restart` and try again."
144
+ )
145
+ )
146
+ )
147
+ except CLILocalException as e:
148
+ raise e
149
+ except Exception:
150
+ pass
151
+
152
+ # Check if tinybird-local is running with docker
153
+ try:
154
+ output_str = subprocess.check_output(
155
+ ["docker", "ps", "--filter", f"name={TB_CONTAINER_NAME}", "--format", "json"], text=True
112
156
  )
157
+ output = {}
158
+ if output_str:
159
+ output = json.loads(output_str)
113
160
  add_telemetry_event(
114
161
  "docker_debug",
115
162
  data={
116
- "docker_ps_output": header_row + tb_local_row,
163
+ "docker_ps_output": output,
117
164
  },
118
165
  )
166
+
167
+ if output.get("State", "") == "running":
168
+ if "(healthy)" in output.get("Status", ""):
169
+ raise CLILocalException(
170
+ FeedbackManager.error(
171
+ message=(
172
+ "Looks like Tinybird Local is running but we are not able to connect to it.\n\n"
173
+ "If you've run it manually using different host or port, please set the environment variables "
174
+ "TB_LOCAL_HOST and TB_LOCAL_PORT to match the ones you're using.\n"
175
+ "If you're not sure about this, please run `tb local restart` and try again."
176
+ )
177
+ )
178
+ )
179
+ raise CLILocalException(
180
+ FeedbackManager.error(
181
+ message="Tinybird Local is running but it's unhealthy. Please check if it's running and try again.\n"
182
+ "If the problem persists, please run `tb local restart` and try again."
183
+ )
184
+ )
185
+ except CLILocalException as e:
186
+ raise e
119
187
  except Exception:
120
188
  pass
189
+
190
+ is_ci = (
191
+ os.getenv("GITHUB_ACTIONS")
192
+ or os.getenv("TRAVIS")
193
+ or os.getenv("CIRCLECI")
194
+ or os.getenv("GITLAB_CI")
195
+ or os.getenv("CI")
196
+ or os.getenv("TB_CI")
197
+ )
198
+ if not is_ci:
199
+ yes = click.confirm(
200
+ FeedbackManager.warning(message="Tinybird local is not running. Do you want to start it? [Y/n]"),
201
+ prompt_suffix="",
202
+ show_default=False,
203
+ default=True,
204
+ )
205
+ if yes:
206
+ click.echo(FeedbackManager.highlight(message="» Starting Tinybird Local..."))
207
+ docker_client = get_docker_client()
208
+ start_tinybird_local(docker_client, False)
209
+ click.echo(FeedbackManager.success(message="✓ Tinybird Local is ready!"))
210
+ return get_local_tokens()
211
+
121
212
  raise CLILocalException(
122
213
  FeedbackManager.error(message="Tinybird local is not running. Please run `tb local start` first.")
123
214
  )
215
+
216
+
217
+ def start_tinybird_local(
218
+ docker_client: DockerClient,
219
+ use_aws_creds: bool,
220
+ ) -> None:
221
+ """Start the Tinybird container."""
222
+ pull_show_prompt = False
223
+ pull_required = False
224
+ try:
225
+ local_image = docker_client.images.get(TB_IMAGE_NAME)
226
+ local_image_id = local_image.attrs["RepoDigests"][0].split("@")[1]
227
+ remote_image = docker_client.images.get_registry_data(TB_IMAGE_NAME)
228
+ pull_show_prompt = local_image_id != remote_image.id
229
+ except Exception:
230
+ pull_show_prompt = False
231
+ pull_required = True
232
+
233
+ if pull_show_prompt and click.confirm(
234
+ FeedbackManager.warning(message="△ New version detected, download? [y/N]:"),
235
+ show_default=False,
236
+ prompt_suffix="",
237
+ ):
238
+ click.echo(FeedbackManager.info(message="* Downloading latest version of Tinybird Local..."))
239
+ pull_required = True
240
+
241
+ if pull_required:
242
+ docker_client.images.pull(TB_IMAGE_NAME, platform="linux/amd64")
243
+
244
+ environment = get_use_aws_creds() if use_aws_creds else {}
245
+
246
+ container = get_existing_container_with_matching_env(docker_client, TB_CONTAINER_NAME, environment)
247
+
248
+ if container and not pull_required:
249
+ # Container `start` is idempotent. It's safe to call it even if the container is already running.
250
+ container.start()
251
+ else:
252
+ if container:
253
+ container.remove(force=True)
254
+
255
+ container = docker_client.containers.run(
256
+ TB_IMAGE_NAME,
257
+ name=TB_CONTAINER_NAME,
258
+ detach=True,
259
+ ports={"7181/tcp": TB_LOCAL_PORT},
260
+ remove=False,
261
+ platform="linux/amd64",
262
+ environment=environment,
263
+ )
264
+
265
+ click.echo(FeedbackManager.info(message="* Waiting for Tinybird Local to be ready..."))
266
+ while True:
267
+ container.reload() # Refresh container attributes
268
+ health = container.attrs.get("State", {}).get("Health", {}).get("Status")
269
+ if health == "healthy":
270
+ break
271
+ if health == "unhealthy":
272
+ raise CLILocalException(
273
+ FeedbackManager.error(
274
+ message="Tinybird Local is unhealthy. Try running `tb local restart` in a few seconds."
275
+ )
276
+ )
277
+
278
+ time.sleep(5)
279
+
280
+ # Remove tinybird-local dangling images to avoid running out of disk space
281
+ images = docker_client.images.list(name=re.sub(r":.*$", "", TB_IMAGE_NAME), all=True, filters={"dangling": True})
282
+ for image in images:
283
+ image.remove(force=True)
284
+
285
+
286
+ def get_existing_container_with_matching_env(
287
+ docker_client: DockerClient, container_name: str, required_env: dict[str, str]
288
+ ) -> Optional[Container]:
289
+ """
290
+ Checks if a container with the given name exists and has matching environment variables.
291
+ If it exists but environment doesn't match, it returns None.
292
+
293
+ Args:
294
+ docker_client: The Docker client instance
295
+ container_name: The name of the container to check
296
+ required_env: Dictionary of environment variables that must be present
297
+
298
+ Returns:
299
+ The container if it exists with matching environment, None otherwise
300
+ """
301
+ container = None
302
+ containers = docker_client.containers.list(all=True, filters={"name": container_name})
303
+ if containers:
304
+ container = containers[0]
305
+
306
+ if container and required_env:
307
+ container_info = container.attrs
308
+ container_env = container_info.get("Config", {}).get("Env", [])
309
+ env_missing = False
310
+ for key, value in required_env.items():
311
+ env_var = f"{key}={value}"
312
+ if env_var not in container_env:
313
+ env_missing = True
314
+ break
315
+
316
+ if env_missing:
317
+ container.remove(force=True)
318
+ container = None
319
+
320
+ return container
321
+
322
+
323
+ def get_docker_client() -> DockerClient:
324
+ """Check if Docker is installed and running."""
325
+ try:
326
+ docker_host = os.getenv("DOCKER_HOST")
327
+ if not docker_host:
328
+ # Try to get docker host from docker context
329
+ try:
330
+ try:
331
+ output = subprocess.check_output(["docker", "context", "inspect"], text=True)
332
+ except Exception as e:
333
+ add_telemetry_event(
334
+ "docker_error",
335
+ error=f"docker_context_inspect_error: {str(e)}",
336
+ )
337
+ raise e
338
+ try:
339
+ context = json.loads(output)
340
+ except Exception as e:
341
+ add_telemetry_event(
342
+ "docker_error",
343
+ error=f"docker_context_inspect_parse_output_error: {str(e)}",
344
+ data={
345
+ "docker_context_inspect_output": output,
346
+ },
347
+ )
348
+ raise e
349
+ if context and len(context) > 0:
350
+ try:
351
+ docker_host = context[0].get("Endpoints", {}).get("docker", {}).get("Host")
352
+ if docker_host:
353
+ os.environ["DOCKER_HOST"] = docker_host
354
+ except Exception as e:
355
+ add_telemetry_event(
356
+ "docker_error",
357
+ error=f"docker_context_parse_host_error: {str(e)}",
358
+ data={
359
+ "context": json.dumps(context),
360
+ },
361
+ )
362
+ raise e
363
+ except Exception:
364
+ pass
365
+ try:
366
+ client = docker.from_env() # type: ignore
367
+ except Exception as e:
368
+ add_telemetry_event(
369
+ "docker_error",
370
+ error=f"docker_get_client_from_env_error: {str(e)}",
371
+ )
372
+ raise e
373
+ try:
374
+ client.ping()
375
+ except Exception as e:
376
+ client_dict_non_sensitive = {k: v for k, v in client.api.__dict__.items() if "auth" not in k}
377
+ add_telemetry_event(
378
+ "docker_error",
379
+ error=f"docker_ping_error: {str(e)}",
380
+ data={
381
+ "client": repr(client_dict_non_sensitive),
382
+ },
383
+ )
384
+ raise e
385
+ return client
386
+ except Exception:
387
+ raise CLILocalException(
388
+ FeedbackManager.error(
389
+ message=(
390
+ f"No container runtime is running. Make sure a Docker-compatible runtime is installed and running. "
391
+ f"Trying to connect to Docker-compatible runtime at {docker_host}\n\n"
392
+ "If you're using a custom location, please provide it using the DOCKER_HOST environment variable."
393
+ )
394
+ )
395
+ )
396
+
397
+
398
+ def get_use_aws_creds() -> dict[str, str]:
399
+ credentials: dict[str, str] = {}
400
+ try:
401
+ # Get the boto3 session and credentials
402
+ session = boto3.Session()
403
+ creds = session.get_credentials()
404
+
405
+ if creds:
406
+ # Create environment variables for the container based on boto credentials
407
+ credentials["AWS_ACCESS_KEY_ID"] = creds.access_key
408
+ credentials["AWS_SECRET_ACCESS_KEY"] = creds.secret_key
409
+
410
+ # Add session token if it exists (for temporary credentials)
411
+ if creds.token:
412
+ credentials["AWS_SESSION_TOKEN"] = creds.token
413
+
414
+ # Add region if available
415
+ if session.region_name:
416
+ credentials["AWS_DEFAULT_REGION"] = session.region_name
417
+
418
+ click.echo(
419
+ FeedbackManager.success(
420
+ message=f"✓ AWS credentials found and will be passed to Tinybird Local (region: {session.region_name or 'not set'})"
421
+ )
422
+ )
423
+ else:
424
+ click.echo(
425
+ FeedbackManager.warning(
426
+ message="△ No AWS credentials found. S3 operations will not work in Tinybird Local."
427
+ )
428
+ )
429
+ except Exception as e:
430
+ click.echo(
431
+ FeedbackManager.warning(
432
+ message=f"△ Error retrieving AWS credentials: {str(e)}. S3 operations will not work in Tinybird Local."
433
+ )
434
+ )
435
+
436
+ return credentials
@@ -13,7 +13,6 @@ from pathlib import Path
13
13
  from typing import Any, Dict, List, Optional, Tuple
14
14
 
15
15
  import click
16
- import requests
17
16
  import yaml
18
17
  from requests import Response
19
18
 
@@ -22,11 +21,11 @@ from tinybird.tb.client import TinyB
22
21
  from tinybird.tb.modules.build import process as build_project
23
22
  from tinybird.tb.modules.cli import cli
24
23
  from tinybird.tb.modules.config import CLIConfig
25
- from tinybird.tb.modules.exceptions import CLILocalException, CLITestException
24
+ from tinybird.tb.modules.exceptions import CLITestException
26
25
  from tinybird.tb.modules.feedback_manager import FeedbackManager
27
26
  from tinybird.tb.modules.llm import LLM
28
27
  from tinybird.tb.modules.llm_utils import extract_xml, parse_xml
29
- from tinybird.tb.modules.local_common import TB_LOCAL_ADDRESS, get_test_workspace_name
28
+ from tinybird.tb.modules.local_common import get_local_tokens, get_test_workspace_name
30
29
  from tinybird.tb.modules.project import Project
31
30
 
32
31
  yaml.SafeDumper.org_represent_str = yaml.SafeDumper.represent_str # type: ignore[attr-defined]
@@ -314,13 +313,7 @@ def get_pipe_path(name_or_filename: str, folder: str) -> Path:
314
313
 
315
314
  def cleanup_test_workspace(client: TinyB, path: str) -> None:
316
315
  user_client = deepcopy(client)
317
- try:
318
- # ruff: noqa: ASYNC210
319
- tokens = requests.get(f"{TB_LOCAL_ADDRESS}/tokens").json()
320
- except Exception:
321
- raise CLILocalException(
322
- FeedbackManager.error(message="Tinybird local is not running. Please run `tb local start` first.")
323
- )
316
+ tokens = get_local_tokens()
324
317
  try:
325
318
  user_token = tokens["user_token"]
326
319
  user_client.token = user_token
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tinybird
3
- Version: 0.0.1.dev165
3
+ Version: 0.0.1.dev167
4
4
  Summary: Tinybird Command Line Tool
5
5
  Home-page: https://www.tinybird.co/docs/forward/commands
6
6
  Author: Tinybird
@@ -11,8 +11,8 @@ tinybird/sql_toolset.py,sha256=KORVbNAUTfW1qo3U9oe7Z59xQ0QMsFhB0ji3HzY2JVo,15324
11
11
  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
- tinybird/ch_utils/engine.py,sha256=BZuPM7MFS7vaEKK5tOMR2bwSAgJudPrJt27uVEwZmTY,40512
15
- tinybird/tb/__cli__.py,sha256=PJGHMfcwNnFGvrhAnlIKfCt69U-C76TSHew8JjOVy-c,247
14
+ tinybird/ch_utils/engine.py,sha256=X4tE9OrfaUy6kO9cqVEzyI9cDcmOF3IAssRRzsTsfEQ,40781
15
+ tinybird/tb/__cli__.py,sha256=hOH0V0bHJIUdoaXgkkQIrbemhjCdguZddpBYgdOb1_A,247
16
16
  tinybird/tb/check_pypi.py,sha256=rW4QmDRbtgKdUUwJCnBkVjmTjZSZGN-XgZhx7vMkC0w,1009
17
17
  tinybird/tb/cli.py,sha256=u3eGOhX0MHkuT6tiwaZ0_3twqLmqKXDAOxF7yV_Nn9Q,1075
18
18
  tinybird/tb/client.py,sha256=CSBl_JRuioPyY0H8Ac96dJ9wQXDXfrvK2lwqlOxKGoY,55715
@@ -26,7 +26,7 @@ tinybird/tb/modules/connection.py,sha256=7oOR7x4PhBcm1ETFFCH2YJ_3oeGXjAbmx1cnZX9
26
26
  tinybird/tb/modules/copy.py,sha256=2Mm4FWKehOG7CoOhiF1m9UZJgJn0W1_cMolqju8ONYg,5805
27
27
  tinybird/tb/modules/create.py,sha256=OHUvuHuvP0iecPPGI4eVOHOgR20qy7a_Sw7sbJKuG8g,17411
28
28
  tinybird/tb/modules/datasource.py,sha256=V314rkpdVxVMjsp5qcSCTqDlmp4Vu--qM07BoWh-aqs,17783
29
- tinybird/tb/modules/deployment.py,sha256=pnW2DAVTZYHEOJDbBH6uv0_Y7UV_6adq6q_r5w8miXI,26073
29
+ tinybird/tb/modules/deployment.py,sha256=BAvZy8ghdIwK_eH8J6eJ0W69U2TPtvRmtIThYc2cvOQ,26255
30
30
  tinybird/tb/modules/deprecations.py,sha256=rrszC1f_JJeJ8mUxGoCxckQTJFBCR8wREf4XXXN-PRc,4507
31
31
  tinybird/tb/modules/dev_server.py,sha256=57FCKuWpErwYUYgHspYDkLWEm9F4pbvVOtMrFXX1fVU,10129
32
32
  tinybird/tb/modules/endpoint.py,sha256=XySDt3pk66vxOZ0egUfz4bY8bEk3BjOXkv-L0OIJ3sc,12083
@@ -38,7 +38,7 @@ tinybird/tb/modules/job.py,sha256=n4dSSBgnA8NqD7srGahf2xRj6wxkmX9Vl0J-QJ_a2w0,29
38
38
  tinybird/tb/modules/llm.py,sha256=KfsCYmKeW1VQz0iDZhGKCRkQv_Y3kTHh6JuxvofOguE,1076
39
39
  tinybird/tb/modules/llm_utils.py,sha256=nS9r4FAElJw8yXtmdYrx-rtI2zXR8qXfi1QqUDCfxvg,3469
40
40
  tinybird/tb/modules/local.py,sha256=SUaGWH9TLDFFF9uCw4y7UW4NsKgnXG8uxTcxz1dbkCM,14230
41
- tinybird/tb/modules/local_common.py,sha256=9KP8ZrDhFHxTgXoqTnF348D0uof9JugjC-RIN2d9Mh8,4896
41
+ tinybird/tb/modules/local_common.py,sha256=msAZDNPPVenNyL9Dqfb0Z5uFC_1O809xdAi7j1iKmJA,17066
42
42
  tinybird/tb/modules/login.py,sha256=fmXPSdvJnKPv03chptGuu3_Fm6LhP6kUsUKhrmT8rJc,8269
43
43
  tinybird/tb/modules/logout.py,sha256=ULooy1cDBD02-r7voZmhV7udA0ML5tVuflJyShrh56Y,1022
44
44
  tinybird/tb/modules/materialization.py,sha256=QJX5kCPhhm6IXBO1JsalVfbQdypCe_eOUDZ_WHJZWS8,5478
@@ -51,7 +51,7 @@ tinybird/tb/modules/secret.py,sha256=WsqzxxLh9W_jkuHL2JofMXdIJy0lT5WEI-7bQSIDgAc
51
51
  tinybird/tb/modules/shell.py,sha256=Zd_4Ak_5tKVX-cw6B4ag36xZeEGHeh-jZpAsIXkoMoE,14116
52
52
  tinybird/tb/modules/table.py,sha256=4XrtjM-N0zfNtxVkbvLDQQazno1EPXnxTyo7llivfXk,11035
53
53
  tinybird/tb/modules/telemetry.py,sha256=X0p5AVkM8BNsK_Rhdcg4p2eIf6OHimHO_VLldBqHQ8o,11386
54
- tinybird/tb/modules/test.py,sha256=Yopg89cRwOQpgRzsb9nvu2Z-UR2as2vBjVa5PF3uiK0,13420
54
+ tinybird/tb/modules/test.py,sha256=891Br7sgRk88Zqqj4UQHWbdIK7aI7QY2wpAaBscPxRw,13134
55
55
  tinybird/tb/modules/token.py,sha256=2fmKwu10_M0pqs6YmJVeILR9ZQB0ejRAET86agASbKM,13488
56
56
  tinybird/tb/modules/watch.py,sha256=H1FieLTVGRqmZ0hR0vELbQJ9l0CThrFCgGCta-MPuAY,8883
57
57
  tinybird/tb/modules/workspace.py,sha256=-XUvL2PB5GcviJ8m30h-ZDc5kwJcm1wy1dreYa2l4Ck,10658
@@ -80,8 +80,8 @@ tinybird/tb_cli_modules/config.py,sha256=IsgdtFRnUrkY8-Zo32lmk6O7u3bHie1QCxLwgp4
80
80
  tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
81
81
  tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
82
82
  tinybird/tb_cli_modules/telemetry.py,sha256=Hh2Io8ZPROSunbOLuMvuIFU4TqwWPmQTqal4WS09K1A,10449
83
- tinybird-0.0.1.dev165.dist-info/METADATA,sha256=WfcrvDPMsy_ogA0thcGWuXqgd7DIe3zU0eA-2v6XR3E,1607
84
- tinybird-0.0.1.dev165.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
85
- tinybird-0.0.1.dev165.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
86
- tinybird-0.0.1.dev165.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
87
- tinybird-0.0.1.dev165.dist-info/RECORD,,
83
+ tinybird-0.0.1.dev167.dist-info/METADATA,sha256=zC83ZfhfJZO452npBKKZrv20pk5lG41o4mD0dkImgE4,1607
84
+ tinybird-0.0.1.dev167.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
85
+ tinybird-0.0.1.dev167.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
86
+ tinybird-0.0.1.dev167.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
87
+ tinybird-0.0.1.dev167.dist-info/RECORD,,