tinybird 0.0.1.dev34__py3-none-any.whl → 0.0.1.dev36__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/context.py +1 -1
- tinybird/feedback_manager.py +6 -0
- tinybird/prompts.py +6 -0
- tinybird/sql_toolset.py +9 -2
- tinybird/tb/__cli__.py +2 -2
- tinybird/tb/cli.py +2 -2
- tinybird/tb/modules/build.py +53 -12
- tinybird/tb/modules/cli.py +7 -94
- tinybird/tb/modules/create.py +4 -4
- tinybird/tb/modules/datafile/build.py +2 -2
- tinybird/tb/modules/datafile/common.py +17 -1
- tinybird/tb/modules/datasource.py +3 -471
- tinybird/tb/modules/{deploy.py → deployment.py} +22 -12
- tinybird/tb/modules/endpoint.py +187 -0
- tinybird/tb/modules/llm.py +10 -16
- tinybird/tb/modules/llm_utils.py +87 -0
- tinybird/tb/modules/local.py +4 -1
- tinybird/tb/modules/local_common.py +2 -2
- tinybird/tb/modules/mock.py +3 -4
- tinybird/tb/modules/pipe.py +1 -254
- tinybird/tb/modules/shell.py +8 -1
- tinybird/tb/modules/test.py +2 -2
- tinybird/tb/modules/update.py +4 -4
- tinybird/tb/modules/watch.py +4 -4
- tinybird/tb/modules/workspace.py +0 -96
- tinybird/tb_cli_modules/common.py +19 -17
- {tinybird-0.0.1.dev34.dist-info → tinybird-0.0.1.dev36.dist-info}/METADATA +1 -1
- {tinybird-0.0.1.dev34.dist-info → tinybird-0.0.1.dev36.dist-info}/RECORD +31 -31
- tinybird/tb/modules/connection.py +0 -803
- {tinybird-0.0.1.dev34.dist-info → tinybird-0.0.1.dev36.dist-info}/WHEEL +0 -0
- {tinybird-0.0.1.dev34.dist-info → tinybird-0.0.1.dev36.dist-info}/entry_points.txt +0 -0
- {tinybird-0.0.1.dev34.dist-info → tinybird-0.0.1.dev36.dist-info}/top_level.txt +0 -0
tinybird/tb/modules/test.py
CHANGED
|
@@ -111,9 +111,9 @@ async def test_create(name_or_filename: str, prompt: str, folder: str) -> None:
|
|
|
111
111
|
user_token = config.get_user_token()
|
|
112
112
|
if not user_token:
|
|
113
113
|
raise CLIException(FeedbackManager.error(message="No user token found"))
|
|
114
|
-
llm = LLM(user_token=user_token,
|
|
114
|
+
llm = LLM(user_token=user_token, host=config.get_client().host)
|
|
115
115
|
|
|
116
|
-
response_llm =
|
|
116
|
+
response_llm = llm.ask(system_prompt=system_prompt, prompt=prompt)
|
|
117
117
|
response_xml = extract_xml(response_llm, "response")
|
|
118
118
|
tests_content = parse_xml(response_xml, "test")
|
|
119
119
|
|
tinybird/tb/modules/update.py
CHANGED
|
@@ -65,13 +65,13 @@ async def update(
|
|
|
65
65
|
datasource_files = [f for f in os.listdir(Path(folder) / "datasources") if f.endswith(".datasource")]
|
|
66
66
|
for datasource_file in datasource_files:
|
|
67
67
|
datasource_path = Path(folder) / "datasources" / datasource_file
|
|
68
|
-
llm = LLM(user_token=user_token,
|
|
68
|
+
llm = LLM(user_token=user_token, host=tb_client.host)
|
|
69
69
|
datasource_name = datasource_path.stem
|
|
70
70
|
datasource_content = datasource_path.read_text()
|
|
71
71
|
has_json_path = "`json:" in datasource_content
|
|
72
72
|
if has_json_path:
|
|
73
73
|
prompt = f"<datasource_schema>{datasource_content}</datasource_schema>\n<user_input>{prompt}</user_input>"
|
|
74
|
-
response =
|
|
74
|
+
response = llm.ask(system_prompt=mock_prompt(rows=20), prompt=prompt)
|
|
75
75
|
sql = extract_xml(response, "sql")
|
|
76
76
|
sql = sql.split("FORMAT")[0]
|
|
77
77
|
result = await local_client.query(f"{sql} FORMAT JSON")
|
|
@@ -116,8 +116,8 @@ async def update_resources(
|
|
|
116
116
|
]
|
|
117
117
|
]
|
|
118
118
|
)
|
|
119
|
-
llm = LLM(user_token=user_token,
|
|
120
|
-
result =
|
|
119
|
+
llm = LLM(user_token=user_token, host=tb_client.host)
|
|
120
|
+
result = llm.ask(system_prompt=update_prompt(resources_xml), prompt=prompt)
|
|
121
121
|
result = extract_xml(result, "response")
|
|
122
122
|
resources = parse_xml(result, "resource")
|
|
123
123
|
datasources = []
|
tinybird/tb/modules/watch.py
CHANGED
|
@@ -90,7 +90,7 @@ def watch_files(
|
|
|
90
90
|
) -> None:
|
|
91
91
|
# Handle both sync and async process functions
|
|
92
92
|
async def process_wrapper(files: List[str]) -> None:
|
|
93
|
-
click.echo(FeedbackManager.highlight(message="» Rebuilding..."))
|
|
93
|
+
click.echo(FeedbackManager.highlight(message="» Rebuilding project..."))
|
|
94
94
|
time_start = time.time()
|
|
95
95
|
if asyncio.iscoroutinefunction(process):
|
|
96
96
|
await process(files, watch=True)
|
|
@@ -121,7 +121,7 @@ def watch_files(
|
|
|
121
121
|
|
|
122
122
|
|
|
123
123
|
class WatchProjectHandler(PatternMatchingEventHandler):
|
|
124
|
-
def __init__(self, shell: Shell, folder: str, process: Callable[[
|
|
124
|
+
def __init__(self, shell: Shell, folder: str, process: Callable[[], None]):
|
|
125
125
|
self.shell = shell
|
|
126
126
|
self.process = process
|
|
127
127
|
super().__init__(
|
|
@@ -142,7 +142,7 @@ class WatchProjectHandler(PatternMatchingEventHandler):
|
|
|
142
142
|
return event.src_path
|
|
143
143
|
|
|
144
144
|
def _process(self) -> None:
|
|
145
|
-
click.echo(FeedbackManager.highlight(message="» Rebuilding..."))
|
|
145
|
+
click.echo(FeedbackManager.highlight(message="» Rebuilding project..."))
|
|
146
146
|
time_start = time.time()
|
|
147
147
|
self.process()
|
|
148
148
|
time_end = time.time()
|
|
@@ -160,7 +160,7 @@ class WatchProjectHandler(PatternMatchingEventHandler):
|
|
|
160
160
|
self._process()
|
|
161
161
|
|
|
162
162
|
def on_deleted(self, event: Union[DirDeletedEvent, FileDeletedEvent]) -> None:
|
|
163
|
-
filename = Path(event.src_path).name
|
|
163
|
+
filename = Path(str(event.src_path)).name
|
|
164
164
|
if event.is_directory:
|
|
165
165
|
click.echo(FeedbackManager.highlight(message=f"\n\n⟲ Deleted directory: {filename}\n"))
|
|
166
166
|
else:
|
tinybird/tb/modules/workspace.py
CHANGED
|
@@ -8,7 +8,6 @@ from typing import Optional
|
|
|
8
8
|
import click
|
|
9
9
|
from click import Context
|
|
10
10
|
|
|
11
|
-
from tinybird.client import CanNotBeDeletedException, DoesNotExistException, TinyB
|
|
12
11
|
from tinybird.config import get_display_host
|
|
13
12
|
from tinybird.tb.modules.cli import cli
|
|
14
13
|
from tinybird.tb.modules.common import (
|
|
@@ -25,7 +24,6 @@ from tinybird.tb.modules.common import (
|
|
|
25
24
|
switch_workspace,
|
|
26
25
|
)
|
|
27
26
|
from tinybird.tb.modules.config import CLIConfig
|
|
28
|
-
from tinybird.tb.modules.datafile.common import PipeTypes
|
|
29
27
|
from tinybird.tb.modules.exceptions import CLIWorkspaceException
|
|
30
28
|
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
31
29
|
|
|
@@ -88,100 +86,6 @@ async def workspace_current():
|
|
|
88
86
|
await print_current_workspace(config)
|
|
89
87
|
|
|
90
88
|
|
|
91
|
-
@workspace.command(
|
|
92
|
-
name="clear",
|
|
93
|
-
short_help="Drop all the resources inside a project. This command is dangerous because it removes everything, use with care.",
|
|
94
|
-
)
|
|
95
|
-
@click.option("--yes", is_flag=True, default=False, help="Do not ask for confirmation")
|
|
96
|
-
@click.option("--dry-run", is_flag=True, default=False, help="Run the command without removing anything")
|
|
97
|
-
@click.pass_context
|
|
98
|
-
@coro
|
|
99
|
-
async def clear_workspace(ctx: Context, yes: bool, dry_run: bool) -> None:
|
|
100
|
-
"""Drop all the resources inside a project. This command is dangerous because it removes everything, use with care."""
|
|
101
|
-
|
|
102
|
-
# Get current workspace to add the name to the alert message
|
|
103
|
-
config = CLIConfig.get_project_config()
|
|
104
|
-
client: TinyB = config.get_client()
|
|
105
|
-
|
|
106
|
-
response = await client.user_workspaces_and_branches()
|
|
107
|
-
|
|
108
|
-
columns = ["name", "id", "role", "plan", "current"]
|
|
109
|
-
table = []
|
|
110
|
-
|
|
111
|
-
for workspace in response["workspaces"]:
|
|
112
|
-
if config["id"] == workspace["id"]:
|
|
113
|
-
if workspace.get("is_branch"):
|
|
114
|
-
raise CLIWorkspaceException(FeedbackManager.error_not_allowed_in_branch())
|
|
115
|
-
return
|
|
116
|
-
else:
|
|
117
|
-
click.echo(FeedbackManager.info_current_workspace())
|
|
118
|
-
table.append(
|
|
119
|
-
[
|
|
120
|
-
workspace["name"],
|
|
121
|
-
workspace["id"],
|
|
122
|
-
workspace["role"],
|
|
123
|
-
_get_workspace_plan_name(workspace["plan"]),
|
|
124
|
-
True,
|
|
125
|
-
]
|
|
126
|
-
)
|
|
127
|
-
break
|
|
128
|
-
|
|
129
|
-
echo_safe_humanfriendly_tables_format_smart_table(table, column_names=columns)
|
|
130
|
-
|
|
131
|
-
if yes or click.confirm(FeedbackManager.warning_confirm_clear_workspace()):
|
|
132
|
-
pipes = await client.pipes(dependencies=False, node_attrs="id,name,materialized", attrs="name,type")
|
|
133
|
-
pipe_names = [pipe["name"] for pipe in pipes]
|
|
134
|
-
|
|
135
|
-
for pipe in pipes:
|
|
136
|
-
if pipe["type"] == PipeTypes.MATERIALIZED:
|
|
137
|
-
if not dry_run:
|
|
138
|
-
node_id = None
|
|
139
|
-
for node in pipe["nodes"]:
|
|
140
|
-
if "materialized" in node and node["materialized"] is not None:
|
|
141
|
-
node_id = node["id"]
|
|
142
|
-
break
|
|
143
|
-
|
|
144
|
-
if node_id:
|
|
145
|
-
click.echo(FeedbackManager.info_unlinking_materialized_pipe(pipe=pipe["name"]))
|
|
146
|
-
try:
|
|
147
|
-
await client.pipe_unlink_materialized(pipe["name"], node_id)
|
|
148
|
-
except DoesNotExistException:
|
|
149
|
-
click.echo(FeedbackManager.info_materialized_unlinking_pipe_not_found(pipe=pipe["name"]))
|
|
150
|
-
else:
|
|
151
|
-
click.echo(FeedbackManager.info_materialized_dry_unlinking_pipe(pipe=pipe["name"]))
|
|
152
|
-
|
|
153
|
-
for pipe_name in pipe_names:
|
|
154
|
-
if not dry_run:
|
|
155
|
-
click.echo(FeedbackManager.info_removing_pipe(pipe=pipe_name))
|
|
156
|
-
try:
|
|
157
|
-
await client.pipe_delete(pipe_name)
|
|
158
|
-
except DoesNotExistException:
|
|
159
|
-
click.echo(FeedbackManager.info_removing_pipe_not_found(pipe=pipe_name))
|
|
160
|
-
else:
|
|
161
|
-
click.echo(FeedbackManager.info_dry_removing_pipe(pipe=pipe_name))
|
|
162
|
-
|
|
163
|
-
datasources = await client.datasources()
|
|
164
|
-
ds_names = [datasource["name"] for datasource in datasources]
|
|
165
|
-
for ds_name in ds_names:
|
|
166
|
-
if not dry_run:
|
|
167
|
-
click.echo(FeedbackManager.info_removing_datasource(datasource=ds_name))
|
|
168
|
-
try:
|
|
169
|
-
await client.datasource_delete(ds_name, force=True)
|
|
170
|
-
except DoesNotExistException:
|
|
171
|
-
click.echo(FeedbackManager.info_removing_datasource_not_found(datasource=ds_name))
|
|
172
|
-
except CanNotBeDeletedException as e:
|
|
173
|
-
raise CLIWorkspaceException(
|
|
174
|
-
FeedbackManager.error_datasource_can_not_be_deleted(datasource=ds_name, error=e)
|
|
175
|
-
)
|
|
176
|
-
except Exception as e:
|
|
177
|
-
if "is a Shared Data Source" in str(e):
|
|
178
|
-
raise CLIWorkspaceException(FeedbackManager.error_operation_can_not_be_performed(error=e))
|
|
179
|
-
else:
|
|
180
|
-
raise CLIWorkspaceException(FeedbackManager.error_exception(error=e))
|
|
181
|
-
else:
|
|
182
|
-
click.echo(FeedbackManager.info_dry_removing_datasource(datasource=ds_name))
|
|
183
|
-
|
|
184
|
-
|
|
185
89
|
@workspace.command(name="create", short_help="Create a new Workspace for your Tinybird user")
|
|
186
90
|
@click.argument("workspace_name", required=False)
|
|
187
91
|
@click.option("--starter_kit", "starter_kit", type=str, required=False, help="Use a Tinybird starter kit as a template")
|
|
@@ -1252,26 +1252,28 @@ def is_url_valid(url):
|
|
|
1252
1252
|
return False
|
|
1253
1253
|
|
|
1254
1254
|
|
|
1255
|
-
def validate_kafka_bootstrap_servers(
|
|
1256
|
-
if not isinstance(
|
|
1255
|
+
def validate_kafka_bootstrap_servers(bootstrap_servers):
|
|
1256
|
+
if not isinstance(bootstrap_servers, str):
|
|
1257
1257
|
raise CLIException(FeedbackManager.error_kafka_bootstrap_server())
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
except Exception:
|
|
1266
|
-
raise CLIException(FeedbackManager.error_kafka_bootstrap_server())
|
|
1267
|
-
with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as sock:
|
|
1258
|
+
|
|
1259
|
+
for host_and_port in bootstrap_servers.split(","):
|
|
1260
|
+
parts = host_and_port.split(":")
|
|
1261
|
+
if len(parts) > 2:
|
|
1262
|
+
raise CLIException(FeedbackManager.error_kafka_bootstrap_server())
|
|
1263
|
+
host = parts[0]
|
|
1264
|
+
port_str = parts[1] if len(parts) == 2 else "9092"
|
|
1268
1265
|
try:
|
|
1269
|
-
|
|
1270
|
-
sock.connect((host, port))
|
|
1271
|
-
except socket.timeout:
|
|
1272
|
-
raise CLIException(FeedbackManager.error_kafka_bootstrap_server_conn_timeout())
|
|
1266
|
+
port = int(port_str)
|
|
1273
1267
|
except Exception:
|
|
1274
|
-
raise CLIException(FeedbackManager.
|
|
1268
|
+
raise CLIException(FeedbackManager.error_kafka_bootstrap_server())
|
|
1269
|
+
with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as sock:
|
|
1270
|
+
try:
|
|
1271
|
+
sock.settimeout(3)
|
|
1272
|
+
sock.connect((host, port))
|
|
1273
|
+
except socket.timeout:
|
|
1274
|
+
raise CLIException(FeedbackManager.error_kafka_bootstrap_server_conn_timeout())
|
|
1275
|
+
except Exception:
|
|
1276
|
+
raise CLIException(FeedbackManager.error_kafka_bootstrap_server_conn())
|
|
1275
1277
|
|
|
1276
1278
|
|
|
1277
1279
|
def validate_kafka_key(s):
|
|
@@ -2,59 +2,59 @@ tinybird/__cli__.py,sha256=esPl5QDTzuQgHe5FuxWLm-fURFigGGwjnYLh9GuWUw4,232
|
|
|
2
2
|
tinybird/client.py,sha256=P-bc7s7SbrnzkZkSsb_TO58q4Jxy-bBD5S5qpYiXiZg,51517
|
|
3
3
|
tinybird/config.py,sha256=ENRNyEMXHj_P882o31iFz0hTveziLabVRrxiWE5RRBE,6233
|
|
4
4
|
tinybird/connectors.py,sha256=lkpVSUmSuViEZBa4QjTK7YmPHUop0a5UFoTrSmlVq6k,15244
|
|
5
|
-
tinybird/context.py,sha256=
|
|
5
|
+
tinybird/context.py,sha256=A3GBApac9xO6hrAMJ1s9dMrI_ou9aKF84CdEjtPddMk,1417
|
|
6
6
|
tinybird/datatypes.py,sha256=XNypumfqNjsvLJ5iNXnbVHRvAJe0aQwI3lS6Cxox-e0,10979
|
|
7
|
-
tinybird/feedback_manager.py,sha256=
|
|
7
|
+
tinybird/feedback_manager.py,sha256=ON5Zu-G3-QDVfH2i_P-V4EtyhlNtAzyp1YDZsnce0_U,67826
|
|
8
8
|
tinybird/git_settings.py,sha256=Sw_8rGmribEFJ4Z_6idrVytxpFYk7ez8ei0qHULzs3E,3934
|
|
9
|
-
tinybird/prompts.py,sha256=
|
|
9
|
+
tinybird/prompts.py,sha256=bsJoaZwMz_Bp1d_PKG4IcwmC9Ym6ybomOxhJEREnGFg,24447
|
|
10
10
|
tinybird/sql.py,sha256=eulpRe05ZFrKFrxYawgxDxxrktFE8uL6hSL1gHIWKyg,46166
|
|
11
11
|
tinybird/sql_template.py,sha256=GmMLAI10MTqjQo9qztuQHLRWs67teozsWDxUBdvkAn4,93668
|
|
12
12
|
tinybird/sql_template_fmt.py,sha256=1z-PuqSZXtzso8Z_mPqUc-NxIxUrNUcVIPezNieZk-M,10196
|
|
13
|
-
tinybird/sql_toolset.py,sha256=
|
|
13
|
+
tinybird/sql_toolset.py,sha256=NEUj8Ro5x9XlfVLlGr6nWt9o7OLWVxlqs6TIpgumUNs,14678
|
|
14
14
|
tinybird/syncasync.py,sha256=IPnOx6lMbf9SNddN1eBtssg8vCLHMt76SuZ6YNYm-Yk,27761
|
|
15
15
|
tinybird/tornado_template.py,sha256=oflXyoL2LSCegvl6bAzqw2JIqRaN5WPjhYYDtQcfuOE,41869
|
|
16
16
|
tinybird/ch_utils/constants.py,sha256=aYvg2C_WxYWsnqPdZB1ZFoIr8ZY-XjUXYyHKE9Ansj0,3890
|
|
17
17
|
tinybird/ch_utils/engine.py,sha256=OXkBhlzGjZotjD0vaT-rFIbSGV4tpiHxE8qO_ip0SyQ,40454
|
|
18
|
-
tinybird/tb/__cli__.py,sha256=
|
|
19
|
-
tinybird/tb/cli.py,sha256=
|
|
18
|
+
tinybird/tb/__cli__.py,sha256=QN6VNkkasc3obkNsTbIuaRrlLedAlQzKqfqLF83fnhY,251
|
|
19
|
+
tinybird/tb/cli.py,sha256=VKHKQ2mmkTgbu5sKa60Xz08QbD8kCtBhYjLLiXNOcWI,925
|
|
20
20
|
tinybird/tb/modules/auth.py,sha256=EzRWFmwRkXNhUmRaruEVFLdkbUg8xMSix0cAWl5D4Jg,9029
|
|
21
|
-
tinybird/tb/modules/build.py,sha256=
|
|
21
|
+
tinybird/tb/modules/build.py,sha256=02dqajEybhFP3LdnaDOi-WaRf6mrJ1Gxs4y5nZfbNcs,6097
|
|
22
22
|
tinybird/tb/modules/build_client.py,sha256=uAfFoHae0rUwAmiWt843YkA5iUa0PcUTn-LqGyAlmtM,7379
|
|
23
23
|
tinybird/tb/modules/cicd.py,sha256=SjCyvvy0WUnsjFs2biwwXvcf0Ddpmghhd8-SnMyfsRM,5355
|
|
24
|
-
tinybird/tb/modules/cli.py,sha256=
|
|
24
|
+
tinybird/tb/modules/cli.py,sha256=SOyNAyebxBLEHg_3VXrbNYeWXwfxG3VoAVAWOlWnAbo,19160
|
|
25
25
|
tinybird/tb/modules/common.py,sha256=e4U7AT0dUBG6O-7Iq2CVN1UHPd6-ZCFucyW0L5gBi4g,70592
|
|
26
26
|
tinybird/tb/modules/config.py,sha256=mie3oMVTf5YOUFEiLs88P16U4LkJafJjSpjwyAkFHog,10979
|
|
27
|
-
tinybird/tb/modules/
|
|
28
|
-
tinybird/tb/modules/
|
|
29
|
-
tinybird/tb/modules/
|
|
30
|
-
tinybird/tb/modules/
|
|
27
|
+
tinybird/tb/modules/create.py,sha256=x-lXLlr9d0kvkdqHbioA0m-hgutRXWeJS_pjJjoqrFM,10854
|
|
28
|
+
tinybird/tb/modules/datasource.py,sha256=-VG2qKlu0fmkhsIB5bPiTp3XuktB_r-ZkIoohEBEXtI,13713
|
|
29
|
+
tinybird/tb/modules/deployment.py,sha256=xy89tZAXHMrg78yh-4TZWxnAeQJe8SbC-1xXg96lyc8,9704
|
|
30
|
+
tinybird/tb/modules/endpoint.py,sha256=iYSWzi3_VJzHcq1_j_Hv4cfG1GFKXKxqEY4jLjKhxag,6488
|
|
31
31
|
tinybird/tb/modules/exceptions.py,sha256=4A2sSjCEqKUMqpP3WI00zouCWW4uLaghXXLZBSw04mY,3363
|
|
32
32
|
tinybird/tb/modules/feedback_manager.py,sha256=e8tqehRR0Buhs8O0n8N2Sg2vnnBVb1NLtnZqkPrYD_A,68379
|
|
33
33
|
tinybird/tb/modules/fmt.py,sha256=poh6_cwVGSf-sBu6LKWuO2TANL_J8Sgm25sPpwxa3Aw,3558
|
|
34
34
|
tinybird/tb/modules/job.py,sha256=956Pj8BEEsiD2GZsV9RKKVM3I_CveOLgS82lykO5ukk,2963
|
|
35
|
-
tinybird/tb/modules/llm.py,sha256=
|
|
36
|
-
tinybird/tb/modules/llm_utils.py,sha256=
|
|
37
|
-
tinybird/tb/modules/local.py,sha256=
|
|
38
|
-
tinybird/tb/modules/local_common.py,sha256=
|
|
35
|
+
tinybird/tb/modules/llm.py,sha256=AC0VSphTOM2t-v1_3NLvNN_FIbgMo4dTyMqIv5nniPo,835
|
|
36
|
+
tinybird/tb/modules/llm_utils.py,sha256=ZijatIp7XzzWI1qp4DHyj1GgBIZdntBUF0YFZndhJW8,3558
|
|
37
|
+
tinybird/tb/modules/local.py,sha256=x4xuCGVkoa8KLYGZEJnFUP8HUkKX05Frp_djRVjVjTs,5669
|
|
38
|
+
tinybird/tb/modules/local_common.py,sha256=8UXRJzujHb6bAro7xZpmftzLD4v2XAOCn9Z5hKAcRZ4,2515
|
|
39
39
|
tinybird/tb/modules/login.py,sha256=0cS-f3MsQFHc6xjw8FRWJm4EJBH9C7Ri68EcO_tiwes,6508
|
|
40
|
-
tinybird/tb/modules/mock.py,sha256=
|
|
41
|
-
tinybird/tb/modules/pipe.py,sha256=
|
|
40
|
+
tinybird/tb/modules/mock.py,sha256=TdqAQwF73b95_EVBFVHH0gOghtm3fuMsMCsddCEsZAY,3699
|
|
41
|
+
tinybird/tb/modules/pipe.py,sha256=7NPrtvF76PKvrL9GZyco9xgWbvfesV31vssuAlTbXgM,17858
|
|
42
42
|
tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
43
|
-
tinybird/tb/modules/shell.py,sha256=
|
|
43
|
+
tinybird/tb/modules/shell.py,sha256=dcc0ziFlJ-WSMAq6oH_UF0y3omXTdoJfF_Vi4U8FEmk,13362
|
|
44
44
|
tinybird/tb/modules/table.py,sha256=4XrtjM-N0zfNtxVkbvLDQQazno1EPXnxTyo7llivfXk,11035
|
|
45
45
|
tinybird/tb/modules/tag.py,sha256=anPmMUBc-TbFovlpFi8GPkKA18y7Y0GczMsMms5TZsU,3502
|
|
46
46
|
tinybird/tb/modules/telemetry.py,sha256=iEGnMuCuNhvF6ln__j6X9MSTwL_0Hm-GgFHHHvhfknk,10466
|
|
47
|
-
tinybird/tb/modules/test.py,sha256=
|
|
47
|
+
tinybird/tb/modules/test.py,sha256=vPyAOfiUUawbBu3CjEXEziGD9A6-GzFdJ7G2WohopTc,11615
|
|
48
48
|
tinybird/tb/modules/token.py,sha256=AePr-QMv_vtWwZDWQ92Zp0kPrCjze61i4npiPhoLMZg,12717
|
|
49
|
-
tinybird/tb/modules/update.py,sha256=
|
|
50
|
-
tinybird/tb/modules/watch.py,sha256=
|
|
51
|
-
tinybird/tb/modules/workspace.py,sha256=
|
|
49
|
+
tinybird/tb/modules/update.py,sha256=RCOGhxJPhlwCzRzPPYFfbvpJeDKu3yEISWUJinr953M,6821
|
|
50
|
+
tinybird/tb/modules/watch.py,sha256=Wr_JkoxO0FKY8DXkbGxkq0wagdk2gUtIUcRZTOv9Et8,6293
|
|
51
|
+
tinybird/tb/modules/workspace.py,sha256=M0RtXCaw7RdZ3c_fqtmjbVb7HqlV742Drn4OiyZlp3M,6345
|
|
52
52
|
tinybird/tb/modules/workspace_members.py,sha256=Ai6iCOzXX1zQ8q9iXIFSFHsBJlT-8Q28DaG5Ie-UweY,8726
|
|
53
|
-
tinybird/tb/modules/datafile/build.py,sha256=
|
|
53
|
+
tinybird/tb/modules/datafile/build.py,sha256=pwgsIuvHwb2cdsl3IWOAPyj6S9vB3jn_BXGRcKT7I2Y,57577
|
|
54
54
|
tinybird/tb/modules/datafile/build_common.py,sha256=IXl-Z51zUi1dypV7meNenX0iu2UmowNeqgG6WHyMHlk,4562
|
|
55
55
|
tinybird/tb/modules/datafile/build_datasource.py,sha256=4aP8_DYCRGghXntZSeWDNJxjps1QRVa7WHoYCzQwQts,17355
|
|
56
56
|
tinybird/tb/modules/datafile/build_pipe.py,sha256=Jgv3YKIvMfjPiSIdw1k2mpaoDdAWMiMRaSHwRgyI97E,28258
|
|
57
|
-
tinybird/tb/modules/datafile/common.py,sha256=
|
|
57
|
+
tinybird/tb/modules/datafile/common.py,sha256=q7A-SsgX8s1Doy-WOnxuIky2DXd6ZkRpXf9XG6xXbdc,78827
|
|
58
58
|
tinybird/tb/modules/datafile/diff.py,sha256=-0J7PsBO64T7LOZSkZ4ZFHHCPvT7cKItnJkbz2PkndU,6754
|
|
59
59
|
tinybird/tb/modules/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
|
|
60
60
|
tinybird/tb/modules/datafile/fixture.py,sha256=bdZndItV6ibOegPCrN3OgKdkpjDFCFvoSoiZVsCV_XQ,1852
|
|
@@ -68,13 +68,13 @@ tinybird/tb/modules/datafile/pull.py,sha256=vcjMUbjnZ9XQMGmL33J3ElpbXBTat8Yzp-ha
|
|
|
68
68
|
tinybird/tb/modules/tinyunit/tinyunit.py,sha256=3EBqKzNCfyDuZiO4H61ihanFBRLFUGeuXf3nDXnYFcU,11727
|
|
69
69
|
tinybird/tb/modules/tinyunit/tinyunit_lib.py,sha256=hGh1ZaXC1af7rKnX7222urkj0QJMhMWclqMy59dOqwE,1922
|
|
70
70
|
tinybird/tb_cli_modules/cicd.py,sha256=0lMkb6CVOFZl5HOwgY8mK4T4mgI7O8335UngLXtCc-c,13851
|
|
71
|
-
tinybird/tb_cli_modules/common.py,sha256=
|
|
71
|
+
tinybird/tb_cli_modules/common.py,sha256=18LDc3au8K6NO-mN_5jtETMKHhGJOnZRfP0P7oKI2Eg,78836
|
|
72
72
|
tinybird/tb_cli_modules/config.py,sha256=6u6B5QCdiQLbJkCkwtnKGs9H3nP-KXXhC75mF7B-1DQ,11464
|
|
73
73
|
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
74
74
|
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
75
75
|
tinybird/tb_cli_modules/telemetry.py,sha256=iEGnMuCuNhvF6ln__j6X9MSTwL_0Hm-GgFHHHvhfknk,10466
|
|
76
|
-
tinybird-0.0.1.
|
|
77
|
-
tinybird-0.0.1.
|
|
78
|
-
tinybird-0.0.1.
|
|
79
|
-
tinybird-0.0.1.
|
|
80
|
-
tinybird-0.0.1.
|
|
76
|
+
tinybird-0.0.1.dev36.dist-info/METADATA,sha256=rPYWLp2_2IWLJYIDOYfxJZoIQFY_9L82n9QkcXASV0k,2482
|
|
77
|
+
tinybird-0.0.1.dev36.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
78
|
+
tinybird-0.0.1.dev36.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
79
|
+
tinybird-0.0.1.dev36.dist-info/top_level.txt,sha256=pgw6AzERHBcW3YTi2PW4arjxLkulk2msOz_SomfOEuc,45
|
|
80
|
+
tinybird-0.0.1.dev36.dist-info/RECORD,,
|