tinybird 0.0.1.dev232__py3-none-any.whl → 0.0.1.dev235__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/datafile/common.py +5 -1
- tinybird/tb/__cli__.py +2 -2
- tinybird/tb/check_pypi.py +3 -8
- tinybird/tb/cli.py +0 -6
- tinybird/tb/client.py +314 -340
- tinybird/tb/config.py +4 -5
- tinybird/tb/modules/build.py +21 -24
- tinybird/tb/modules/cicd.py +2 -2
- tinybird/tb/modules/cli.py +18 -28
- tinybird/tb/modules/common.py +123 -138
- tinybird/tb/modules/config.py +2 -4
- tinybird/tb/modules/connection.py +21 -26
- tinybird/tb/modules/copy.py +7 -9
- tinybird/tb/modules/create.py +18 -21
- tinybird/tb/modules/datafile/build.py +39 -39
- tinybird/tb/modules/datafile/build_common.py +9 -9
- tinybird/tb/modules/datafile/build_datasource.py +24 -24
- tinybird/tb/modules/datafile/build_pipe.py +11 -13
- tinybird/tb/modules/datafile/diff.py +12 -12
- tinybird/tb/modules/datafile/format_datasource.py +5 -5
- tinybird/tb/modules/datafile/format_pipe.py +6 -6
- tinybird/tb/modules/datafile/playground.py +42 -42
- tinybird/tb/modules/datafile/pull.py +24 -26
- tinybird/tb/modules/datasource.py +42 -56
- tinybird/tb/modules/endpoint.py +14 -19
- tinybird/tb/modules/info.py +14 -15
- tinybird/tb/modules/infra.py +43 -48
- tinybird/tb/modules/job.py +7 -10
- tinybird/tb/modules/local.py +6 -12
- tinybird/tb/modules/local_common.py +4 -4
- tinybird/tb/modules/login.py +9 -10
- tinybird/tb/modules/materialization.py +7 -10
- tinybird/tb/modules/mock.py +8 -9
- tinybird/tb/modules/open.py +1 -3
- tinybird/tb/modules/pipe.py +2 -4
- tinybird/tb/modules/secret.py +23 -17
- tinybird/tb/modules/shell.py +7 -20
- tinybird/tb/modules/sink.py +6 -8
- tinybird/tb/modules/test.py +9 -14
- tinybird/tb/modules/tinyunit/tinyunit.py +3 -3
- tinybird/tb/modules/token.py +16 -24
- tinybird/tb/modules/watch.py +3 -7
- tinybird/tb/modules/workspace.py +26 -37
- tinybird/tb/modules/workspace_members.py +16 -23
- {tinybird-0.0.1.dev232.dist-info → tinybird-0.0.1.dev235.dist-info}/METADATA +1 -1
- tinybird-0.0.1.dev235.dist-info/RECORD +89 -0
- tinybird-0.0.1.dev232.dist-info/RECORD +0 -89
- {tinybird-0.0.1.dev232.dist-info → tinybird-0.0.1.dev235.dist-info}/WHEEL +0 -0
- {tinybird-0.0.1.dev232.dist-info → tinybird-0.0.1.dev235.dist-info}/entry_points.txt +0 -0
- {tinybird-0.0.1.dev232.dist-info → tinybird-0.0.1.dev235.dist-info}/top_level.txt +0 -0
tinybird/tb/modules/workspace.py
CHANGED
|
@@ -14,7 +14,6 @@ from tinybird.tb.modules.cli import cli
|
|
|
14
14
|
from tinybird.tb.modules.common import (
|
|
15
15
|
_get_workspace_plan_name,
|
|
16
16
|
ask_for_organization,
|
|
17
|
-
coro,
|
|
18
17
|
create_workspace_interactive,
|
|
19
18
|
create_workspace_non_interactive,
|
|
20
19
|
echo_safe_humanfriendly_tables_format_smart_table,
|
|
@@ -42,16 +41,15 @@ def workspace(ctx: Context) -> None:
|
|
|
42
41
|
|
|
43
42
|
@workspace.command(name="ls")
|
|
44
43
|
@click.pass_context
|
|
45
|
-
|
|
46
|
-
async def workspace_ls(ctx: Context) -> None:
|
|
44
|
+
def workspace_ls(ctx: Context) -> None:
|
|
47
45
|
"""List all the workspaces you have access to in the account you're currently authenticated into."""
|
|
48
46
|
|
|
49
47
|
config = CLIConfig.get_project_config()
|
|
50
48
|
client: TinyB = ctx.ensure_object(dict)["client"]
|
|
51
49
|
|
|
52
|
-
response =
|
|
50
|
+
response = client.user_workspaces(version="v1")
|
|
53
51
|
|
|
54
|
-
current_main_workspace =
|
|
52
|
+
current_main_workspace = get_current_main_workspace(config)
|
|
55
53
|
if not current_main_workspace:
|
|
56
54
|
raise CLIWorkspaceException(FeedbackManager.error_unable_to_identify_main_workspace())
|
|
57
55
|
|
|
@@ -76,8 +74,7 @@ async def workspace_ls(ctx: Context) -> None:
|
|
|
76
74
|
@workspace.command(name="use")
|
|
77
75
|
@click.argument("workspace_name_or_id")
|
|
78
76
|
@click.pass_context
|
|
79
|
-
|
|
80
|
-
async def workspace_use(ctx: Context, workspace_name_or_id: str) -> None:
|
|
77
|
+
def workspace_use(ctx: Context, workspace_name_or_id: str) -> None:
|
|
81
78
|
"""Switch to another workspace. Use 'tb workspace ls' to list the workspaces you have access to."""
|
|
82
79
|
config = CLIConfig.get_project_config()
|
|
83
80
|
is_cloud = ctx.ensure_object(dict)["env"] == "cloud"
|
|
@@ -88,22 +85,21 @@ async def workspace_use(ctx: Context, workspace_name_or_id: str) -> None:
|
|
|
88
85
|
)
|
|
89
86
|
)
|
|
90
87
|
|
|
91
|
-
|
|
88
|
+
switch_workspace(config, workspace_name_or_id)
|
|
92
89
|
|
|
93
90
|
|
|
94
91
|
@workspace.command(name="current")
|
|
95
92
|
@click.pass_context
|
|
96
|
-
|
|
97
|
-
async def workspace_current(ctx: Context):
|
|
93
|
+
def workspace_current(ctx: Context):
|
|
98
94
|
"""Show the workspace you're currently authenticated to"""
|
|
99
95
|
config = CLIConfig.get_project_config()
|
|
100
96
|
env = ctx.ensure_object(dict)["env"]
|
|
101
97
|
client: TinyB = ctx.ensure_object(dict)["client"]
|
|
102
98
|
if env == "cloud":
|
|
103
|
-
_ =
|
|
99
|
+
_ = try_update_config_with_remote(config, only_if_needed=True)
|
|
104
100
|
|
|
105
|
-
user_workspaces =
|
|
106
|
-
current_workspace =
|
|
101
|
+
user_workspaces = client.user_workspaces(version="v1")
|
|
102
|
+
current_workspace = client.workspace_info(version="v1")
|
|
107
103
|
|
|
108
104
|
def _get_current_workspace(user_workspaces: Dict[str, Any], current_workspace_id: str) -> Optional[Dict[str, Any]]:
|
|
109
105
|
def get_workspace_by_name(workspaces: List[Dict[str, Any]], name: str) -> Optional[Dict[str, Any]]:
|
|
@@ -152,8 +148,7 @@ async def workspace_current(ctx: Context):
|
|
|
152
148
|
help="When passed, the workspace will be created in the specified organization",
|
|
153
149
|
)
|
|
154
150
|
@click.pass_context
|
|
155
|
-
|
|
156
|
-
async def create_workspace(
|
|
151
|
+
def create_workspace(
|
|
157
152
|
ctx: Context,
|
|
158
153
|
workspace_name: str,
|
|
159
154
|
fork: bool,
|
|
@@ -177,20 +172,18 @@ async def create_workspace(
|
|
|
177
172
|
)
|
|
178
173
|
|
|
179
174
|
organization_name = None
|
|
180
|
-
organizations =
|
|
175
|
+
organizations = get_organizations_by_user(config, user_token)
|
|
181
176
|
|
|
182
|
-
organization_id, organization_name =
|
|
177
|
+
organization_id, organization_name = ask_for_organization(organizations, organization_id)
|
|
183
178
|
if not organization_id:
|
|
184
179
|
return
|
|
185
180
|
|
|
186
181
|
# If we have at least workspace_name, we start the non interactive
|
|
187
182
|
# process, creating an empty workspace
|
|
188
183
|
if workspace_name:
|
|
189
|
-
|
|
190
|
-
ctx, workspace_name, user_token, fork, organization_id, organization_name
|
|
191
|
-
)
|
|
184
|
+
create_workspace_non_interactive(ctx, workspace_name, user_token, fork, organization_id, organization_name)
|
|
192
185
|
else:
|
|
193
|
-
|
|
186
|
+
create_workspace_interactive(ctx, workspace_name, user_token, fork, organization_id, organization_name)
|
|
194
187
|
|
|
195
188
|
|
|
196
189
|
@workspace.command(name="delete", short_help="Delete a workspace for your Tinybird user")
|
|
@@ -203,21 +196,18 @@ async def create_workspace(
|
|
|
203
196
|
)
|
|
204
197
|
@click.option("--yes", is_flag=True, default=False, help="Don't ask for confirmation")
|
|
205
198
|
@click.pass_context
|
|
206
|
-
|
|
207
|
-
async def delete_workspace(
|
|
208
|
-
ctx: Context, workspace_name_or_id: str, confirm_hard_delete: Optional[str], yes: bool
|
|
209
|
-
) -> None:
|
|
199
|
+
def delete_workspace(ctx: Context, workspace_name_or_id: str, confirm_hard_delete: Optional[str], yes: bool) -> None:
|
|
210
200
|
"""Delete a workspace where you are an admin."""
|
|
211
201
|
|
|
212
202
|
is_cloud = ctx.ensure_object(dict)["env"] == "cloud"
|
|
213
203
|
config = CLIConfig.get_project_config()
|
|
214
204
|
if is_cloud:
|
|
215
|
-
user_token =
|
|
205
|
+
user_token = get_user_token(config)
|
|
216
206
|
else:
|
|
217
207
|
user_token = get_local_tokens()["user_token"]
|
|
218
208
|
client: TinyB = ctx.ensure_object(dict)["client"]
|
|
219
209
|
|
|
220
|
-
workspaces = (
|
|
210
|
+
workspaces = (client.user_workspaces(version="v1")).get("workspaces", [])
|
|
221
211
|
workspace_to_delete = next(
|
|
222
212
|
(
|
|
223
213
|
workspace
|
|
@@ -241,7 +231,7 @@ async def delete_workspace(
|
|
|
241
231
|
client.token = user_token
|
|
242
232
|
|
|
243
233
|
try:
|
|
244
|
-
|
|
234
|
+
client.delete_workspace(workspace_to_delete["id"], confirm_hard_delete, version="v1")
|
|
245
235
|
click.echo(FeedbackManager.success_workspace_deleted(workspace_name=workspace_to_delete["name"]))
|
|
246
236
|
except Exception as e:
|
|
247
237
|
raise CLIWorkspaceException(FeedbackManager.error_exception(error=str(e)))
|
|
@@ -250,8 +240,7 @@ async def delete_workspace(
|
|
|
250
240
|
@workspace.command(name="clear", short_help="Clear a workspace. Only available against Tinybird Local.")
|
|
251
241
|
@click.option("--yes", is_flag=True, default=False, help="Don't ask for confirmation")
|
|
252
242
|
@click.pass_context
|
|
253
|
-
|
|
254
|
-
async def workspace_clear(ctx: Context, yes: bool) -> None:
|
|
243
|
+
def workspace_clear(ctx: Context, yes: bool) -> None:
|
|
255
244
|
"""Delete a workspace where you are an admin."""
|
|
256
245
|
is_cloud = ctx.ensure_object(dict)["env"] == "cloud"
|
|
257
246
|
if is_cloud:
|
|
@@ -266,10 +255,10 @@ async def workspace_clear(ctx: Context, yes: bool) -> None:
|
|
|
266
255
|
prompt_suffix="",
|
|
267
256
|
)
|
|
268
257
|
if yes:
|
|
269
|
-
|
|
258
|
+
clear_workspace()
|
|
270
259
|
|
|
271
260
|
|
|
272
|
-
|
|
261
|
+
def clear_workspace() -> None:
|
|
273
262
|
config = CLIConfig.get_project_config()
|
|
274
263
|
tokens = get_local_tokens()
|
|
275
264
|
|
|
@@ -280,7 +269,7 @@ async def clear_workspace() -> None:
|
|
|
280
269
|
if not ws_name:
|
|
281
270
|
raise AuthNoTokenException()
|
|
282
271
|
|
|
283
|
-
user_workspaces = requests.get(
|
|
272
|
+
user_workspaces = requests.get(
|
|
284
273
|
f"{TB_LOCAL_ADDRESS}/v1/user/workspaces?with_organization=true&token={admin_token}"
|
|
285
274
|
).json()
|
|
286
275
|
user_org_id = user_workspaces.get("organization_id", {})
|
|
@@ -291,8 +280,8 @@ async def clear_workspace() -> None:
|
|
|
291
280
|
if not ws:
|
|
292
281
|
raise CLIWorkspaceException(FeedbackManager.error(message=f"Workspace '{ws_name}' not found."))
|
|
293
282
|
|
|
294
|
-
requests.delete(f"{TB_LOCAL_ADDRESS}/v1/workspaces/{ws['id']}?token={user_token}&hard_delete_confirmation=yes")
|
|
295
|
-
user_workspaces =
|
|
283
|
+
requests.delete(f"{TB_LOCAL_ADDRESS}/v1/workspaces/{ws['id']}?token={user_token}&hard_delete_confirmation=yes")
|
|
284
|
+
user_workspaces = user_client.user_workspaces(version="v1")
|
|
296
285
|
ws = next((ws for ws in user_workspaces["workspaces"] if ws["name"] == ws_name), None)
|
|
297
286
|
|
|
298
287
|
if ws:
|
|
@@ -300,8 +289,8 @@ async def clear_workspace() -> None:
|
|
|
300
289
|
FeedbackManager.error(message=f"Workspace '{ws_name}' was not cleared properly. Please try again.")
|
|
301
290
|
)
|
|
302
291
|
|
|
303
|
-
|
|
304
|
-
user_workspaces = requests.get(f"{TB_LOCAL_ADDRESS}/v1/user/workspaces?token={admin_token}").json()
|
|
292
|
+
user_client.create_workspace(ws_name, assign_to_organization_id=user_org_id, version="v1")
|
|
293
|
+
user_workspaces = requests.get(f"{TB_LOCAL_ADDRESS}/v1/user/workspaces?token={admin_token}").json()
|
|
305
294
|
ws = next((ws for ws in user_workspaces["workspaces"] if ws["name"] == ws_name), None)
|
|
306
295
|
|
|
307
296
|
if not ws:
|
|
@@ -15,7 +15,6 @@ from tinybird.tb.config import get_display_cloud_host
|
|
|
15
15
|
from tinybird.tb.modules.common import (
|
|
16
16
|
ask_for_user_token,
|
|
17
17
|
check_user_token,
|
|
18
|
-
coro,
|
|
19
18
|
echo_safe_humanfriendly_tables_format_smart_table,
|
|
20
19
|
get_current_workspace,
|
|
21
20
|
)
|
|
@@ -36,13 +35,13 @@ class WorkspaceMemberCommandContext:
|
|
|
36
35
|
workspace: Dict[str, Any]
|
|
37
36
|
|
|
38
37
|
|
|
39
|
-
|
|
38
|
+
def get_command_context(ctx: click.Context) -> WorkspaceMemberCommandContext:
|
|
40
39
|
config = CLIConfig.get_project_config()
|
|
41
40
|
client = config.get_client()
|
|
42
41
|
host = config.get_host() or CLIConfig.DEFAULTS["host"]
|
|
43
42
|
ui_host = get_display_cloud_host(host)
|
|
44
43
|
|
|
45
|
-
workspace =
|
|
44
|
+
workspace = get_current_workspace(config)
|
|
46
45
|
|
|
47
46
|
if not workspace:
|
|
48
47
|
raise CLIWorkspaceMembersException(FeedbackManager.error_unknown_resource(resource=config["d"]))
|
|
@@ -65,13 +64,10 @@ def members(ctx: Context) -> None:
|
|
|
65
64
|
@click.option("--role", is_flag=False, default=None, help="Role for the members being added", type=click.Choice(ROLES))
|
|
66
65
|
@click.option("--user_token", is_flag=False, default=None, help="When passed, tb won't prompt asking for it")
|
|
67
66
|
@click.pass_context
|
|
68
|
-
|
|
69
|
-
async def add_members_to_workspace(
|
|
70
|
-
ctx: Context, members_emails: str, user_token: Optional[str], role: Optional[str]
|
|
71
|
-
) -> None:
|
|
67
|
+
def add_members_to_workspace(ctx: Context, members_emails: str, user_token: Optional[str], role: Optional[str]) -> None:
|
|
72
68
|
"""Adds members to the current Workspace."""
|
|
73
69
|
|
|
74
|
-
cmd_ctx =
|
|
70
|
+
cmd_ctx = get_command_context(ctx)
|
|
75
71
|
|
|
76
72
|
requested_users = [u.strip() for u in members_emails.split(",")]
|
|
77
73
|
users_to_add = [u for u in requested_users if u not in get_workspace_users(cmd_ctx)]
|
|
@@ -86,11 +82,11 @@ async def add_members_to_workspace(
|
|
|
86
82
|
else:
|
|
87
83
|
if not user_token:
|
|
88
84
|
user_token = ask_for_user_token(f"add users to {cmd_ctx.workspace['name']}", cmd_ctx.ui_host)
|
|
89
|
-
|
|
85
|
+
check_user_token(ctx, user_token)
|
|
90
86
|
|
|
91
87
|
user_client: TinyB = deepcopy(cmd_ctx.client)
|
|
92
88
|
user_client.token = user_token
|
|
93
|
-
|
|
89
|
+
user_client.add_users_to_workspace(cmd_ctx.workspace, users_to_add, role)
|
|
94
90
|
msg = (
|
|
95
91
|
FeedbackManager.success_workspace_user_added(user=users_to_add[0], workspace_name=cmd_ctx.workspace["name"])
|
|
96
92
|
if len(users_to_add) == 1
|
|
@@ -101,11 +97,10 @@ async def add_members_to_workspace(
|
|
|
101
97
|
|
|
102
98
|
@members.command(name="ls", short_help="List members in the current Workspace")
|
|
103
99
|
@click.pass_context
|
|
104
|
-
|
|
105
|
-
async def list_members_in_workspace(ctx: Context) -> None:
|
|
100
|
+
def list_members_in_workspace(ctx: Context) -> None:
|
|
106
101
|
"""List members in the current Workspace."""
|
|
107
102
|
|
|
108
|
-
cmd_ctx =
|
|
103
|
+
cmd_ctx = get_command_context(ctx)
|
|
109
104
|
users = tuple([u] for u in get_workspace_users(cmd_ctx))
|
|
110
105
|
|
|
111
106
|
echo_safe_humanfriendly_tables_format_smart_table(users, column_names=["email"])
|
|
@@ -115,11 +110,10 @@ async def list_members_in_workspace(ctx: Context) -> None:
|
|
|
115
110
|
@click.argument("members_emails")
|
|
116
111
|
@click.option("--user_token", is_flag=False, default=None, help="When passed, tb won't prompt asking for it")
|
|
117
112
|
@click.pass_context
|
|
118
|
-
|
|
119
|
-
async def remove_members_from_workspace(ctx: Context, members_emails: str, user_token: Optional[str]) -> None:
|
|
113
|
+
def remove_members_from_workspace(ctx: Context, members_emails: str, user_token: Optional[str]) -> None:
|
|
120
114
|
"""Removes members from the current workspace."""
|
|
121
115
|
|
|
122
|
-
cmd_ctx =
|
|
116
|
+
cmd_ctx = get_command_context(ctx)
|
|
123
117
|
|
|
124
118
|
requested_users = [u.strip() for u in members_emails.split(",")]
|
|
125
119
|
workspace_users = get_workspace_users(cmd_ctx)
|
|
@@ -136,7 +130,7 @@ async def remove_members_from_workspace(ctx: Context, members_emails: str, user_
|
|
|
136
130
|
else:
|
|
137
131
|
if not user_token:
|
|
138
132
|
user_token = ask_for_user_token(f"remove users from {cmd_ctx.workspace['name']}", cmd_ctx.ui_host)
|
|
139
|
-
|
|
133
|
+
check_user_token(ctx, user_token)
|
|
140
134
|
|
|
141
135
|
if len(non_valid_users) > 0:
|
|
142
136
|
click.echo(
|
|
@@ -149,7 +143,7 @@ async def remove_members_from_workspace(ctx: Context, members_emails: str, user_
|
|
|
149
143
|
|
|
150
144
|
user_client: TinyB = deepcopy(cmd_ctx.client)
|
|
151
145
|
user_client.token = user_token
|
|
152
|
-
|
|
146
|
+
user_client.remove_users_from_workspace(cmd_ctx.workspace, users_to_remove)
|
|
153
147
|
msg = (
|
|
154
148
|
FeedbackManager.success_workspace_user_removed(
|
|
155
149
|
user=users_to_remove[0], workspace_name=cmd_ctx.workspace["name"]
|
|
@@ -165,11 +159,10 @@ async def remove_members_from_workspace(ctx: Context, members_emails: str, user_
|
|
|
165
159
|
@click.argument("members_emails", required=True, type=str)
|
|
166
160
|
@click.option("--user_token", is_flag=False, default=None, help="When passed, tb won't prompt asking for it")
|
|
167
161
|
@click.pass_context
|
|
168
|
-
|
|
169
|
-
async def set_workspace_member_role(ctx: Context, role: str, members_emails: str, user_token: Optional[str]) -> None:
|
|
162
|
+
def set_workspace_member_role(ctx: Context, role: str, members_emails: str, user_token: Optional[str]) -> None:
|
|
170
163
|
"""Sets the role for existing workspace members."""
|
|
171
164
|
|
|
172
|
-
cmd_ctx =
|
|
165
|
+
cmd_ctx = get_command_context(ctx)
|
|
173
166
|
|
|
174
167
|
requested_users = [u.strip() for u in members_emails.split(",")]
|
|
175
168
|
workspace_users = get_workspace_users(cmd_ctx)
|
|
@@ -186,7 +179,7 @@ async def set_workspace_member_role(ctx: Context, role: str, members_emails: str
|
|
|
186
179
|
else:
|
|
187
180
|
if not user_token:
|
|
188
181
|
user_token = ask_for_user_token(f"change user roles in {cmd_ctx.workspace['name']}", cmd_ctx.ui_host)
|
|
189
|
-
|
|
182
|
+
check_user_token(ctx, user_token)
|
|
190
183
|
|
|
191
184
|
if len(non_valid_users) > 0:
|
|
192
185
|
click.echo(
|
|
@@ -199,7 +192,7 @@ async def set_workspace_member_role(ctx: Context, role: str, members_emails: str
|
|
|
199
192
|
|
|
200
193
|
user_client: TinyB = deepcopy(cmd_ctx.client)
|
|
201
194
|
user_client.token = user_token
|
|
202
|
-
|
|
195
|
+
user_client.set_role_for_users_in_workspace(cmd_ctx.workspace, users_to_change, role=role)
|
|
203
196
|
msg = (
|
|
204
197
|
FeedbackManager.success_workspace_user_changed_role(
|
|
205
198
|
user=users_to_change[0], role=role, workspace_name=cmd_ctx.workspace["name"]
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
tinybird/connectors.py,sha256=7Gjms7b5MAaBFGi3xytsJurCylprONpFcYrzp4Fw2Rc,15241
|
|
2
|
+
tinybird/context.py,sha256=FfqYfrGX_I7PKGTQo93utaKPDNVYWelg4Hsp3evX5wM,1291
|
|
3
|
+
tinybird/datatypes.py,sha256=r4WCvspmrXTJHiPjjyOTiZyZl31FO3Ynkwq4LQsYm6E,11059
|
|
4
|
+
tinybird/feedback_manager.py,sha256=1INQFfRfuMCb9lfB8KNf4r6qC2khW568hoHjtk-wshI,69305
|
|
5
|
+
tinybird/git_settings.py,sha256=Sw_8rGmribEFJ4Z_6idrVytxpFYk7ez8ei0qHULzs3E,3934
|
|
6
|
+
tinybird/prompts.py,sha256=dg8Q8Q29X69j-PPP8KGooMz7-M3FNXEYqC0Fj0LcUbw,45316
|
|
7
|
+
tinybird/sql.py,sha256=BufnOgclQokDyihtuXesOwHBsebN6wRXIxO5wKRkOwE,48299
|
|
8
|
+
tinybird/sql_template.py,sha256=WjsTBjpQLVBHGZbY2dZuhZUurFR-rbJ_KRRy5vx4Y5E,99967
|
|
9
|
+
tinybird/sql_template_fmt.py,sha256=KUHdj5rYCYm_rKKdXYSJAE9vIyXUQLB0YSZnUXHeBlY,10196
|
|
10
|
+
tinybird/sql_toolset.py,sha256=M2rpLYkgV2W8NnYEYPC1tJdpy4uZHXVF64NBSKLQka4,19549
|
|
11
|
+
tinybird/syncasync.py,sha256=IPnOx6lMbf9SNddN1eBtssg8vCLHMt76SuZ6YNYm-Yk,27761
|
|
12
|
+
tinybird/tornado_template.py,sha256=jjNVDMnkYFWXflmT8KU_Ssbo5vR8KQq3EJMk5vYgXRw,41959
|
|
13
|
+
tinybird/ch_utils/constants.py,sha256=yEKR11gLCL-irEXXF9QwShaR0JLXiBTlaxfolcCIoqY,4097
|
|
14
|
+
tinybird/ch_utils/engine.py,sha256=X4tE9OrfaUy6kO9cqVEzyI9cDcmOF3IAssRRzsTsfEQ,40781
|
|
15
|
+
tinybird/datafile/common.py,sha256=q-enN3RGK6W-8Yqab7Al_BSjRwF8dXiEyk_zHykBM6s,97391
|
|
16
|
+
tinybird/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
|
|
17
|
+
tinybird/datafile/parse_connection.py,sha256=tRyn2Rpr1TeWet5BXmMoQgaotbGdYep1qiTak_OqC5E,1825
|
|
18
|
+
tinybird/datafile/parse_datasource.py,sha256=ssW8QeFSgglVFi3sDZj_HgkJiTJ2069v2JgqnH3CkDE,1825
|
|
19
|
+
tinybird/datafile/parse_pipe.py,sha256=xf4m0Tw44QWJzHzAm7Z7FwUoUUtr7noMYjU1NiWnX0k,3880
|
|
20
|
+
tinybird/tb/__cli__.py,sha256=b4nj8uwvsmk28yWwIoYdrpRZlirPtMdv4UPFgQiG-ZQ,247
|
|
21
|
+
tinybird/tb/check_pypi.py,sha256=Gp0HkHHDFMSDL6nxKlOY51z7z1Uv-2LRexNTZSHHGmM,552
|
|
22
|
+
tinybird/tb/cli.py,sha256=_5hIbxDFdLjMq0GiXpdoMIz7TdTpQ0DHfAS9MKdlST4,975
|
|
23
|
+
tinybird/tb/client.py,sha256=cHJky5SF-z_epBajNovo_gaIRdMsU5KXx7vtVl4sdgE,53957
|
|
24
|
+
tinybird/tb/config.py,sha256=mhMTGnMB5KcxGoh3dewIr2Jjsa6pHE183gCPAQWyp6o,3973
|
|
25
|
+
tinybird/tb/modules/build.py,sha256=MxGQY-KII4lYut-yOWGBIHFpg-m_cfHgpE7lwOzZCeQ,19871
|
|
26
|
+
tinybird/tb/modules/cicd.py,sha256=0KLKccha9IP749QvlXBmzdWv1On3mFwMY4DUcJlBxiE,7326
|
|
27
|
+
tinybird/tb/modules/cli.py,sha256=E91z3aw4Yziu93AxCjJyBfWnvh3tZk1zxkzRG1s5EhY,16036
|
|
28
|
+
tinybird/tb/modules/common.py,sha256=jTTaDDHrZREt--032XhP6GkbfFwC79YJ5aH1Sl7bmbo,81925
|
|
29
|
+
tinybird/tb/modules/config.py,sha256=gK7rgaWTDd4ZKCrNEg_Uemr26EQjqWt6TjyQKujxOws,11462
|
|
30
|
+
tinybird/tb/modules/connection.py,sha256=-MY56NUAai6EMC4-wpi7bT0_nz_SA8QzTmHkV7HB1IQ,17810
|
|
31
|
+
tinybird/tb/modules/copy.py,sha256=dPZkcIDvxjJrlQUIvToO0vsEEEs4EYumbNV77-BzNoU,4404
|
|
32
|
+
tinybird/tb/modules/create.py,sha256=YYE9Bjqc000QGMmDnCG1UDTPs-Qeljr_RlGqM4RrPCA,23244
|
|
33
|
+
tinybird/tb/modules/datasource.py,sha256=cxq0VVjjidxq-v_JSIIAH7L90XNRctgNKsHRoQ_42OI,41632
|
|
34
|
+
tinybird/tb/modules/deployment.py,sha256=ByXIgEvwxB49pJEKKj0EJIfORWyflCYr04k8961nBkA,28391
|
|
35
|
+
tinybird/tb/modules/deprecations.py,sha256=rrszC1f_JJeJ8mUxGoCxckQTJFBCR8wREf4XXXN-PRc,4507
|
|
36
|
+
tinybird/tb/modules/dev_server.py,sha256=57FCKuWpErwYUYgHspYDkLWEm9F4pbvVOtMrFXX1fVU,10129
|
|
37
|
+
tinybird/tb/modules/endpoint.py,sha256=ksRj6mfDb9Xv63PhTkV_uKSosgysHElqagg3RTt21Do,11958
|
|
38
|
+
tinybird/tb/modules/exceptions.py,sha256=5jK91w1LPmtqIUfDpHe_Op5OxGz8-p1BPgtLREMIni0,5217
|
|
39
|
+
tinybird/tb/modules/feedback_manager.py,sha256=5N2S_ymq0nJPQcFetzoQOWfR6hhx8_gaTp318pe76zU,77966
|
|
40
|
+
tinybird/tb/modules/info.py,sha256=F5vY4kHS_kyO2uSBKac92HoOb447oDeRlzpwtAHTuKc,6872
|
|
41
|
+
tinybird/tb/modules/infra.py,sha256=JE9oLIyF4bi_JBoe-BgZ5HhKp_lQgSihuSV1KIS02Qs,32709
|
|
42
|
+
tinybird/tb/modules/job.py,sha256=wBsnu8UPTOha2rkLvucgmw4xYv73ubmui3eeSIF68ZM,3107
|
|
43
|
+
tinybird/tb/modules/llm.py,sha256=QbHRcMLgFmLKEh4zVb2ctR_5tIGUGdFJrAiRCDtMxDw,1572
|
|
44
|
+
tinybird/tb/modules/llm_utils.py,sha256=nS9r4FAElJw8yXtmdYrx-rtI2zXR8qXfi1QqUDCfxvg,3469
|
|
45
|
+
tinybird/tb/modules/local.py,sha256=YIzmv0Hm63WhXGRAEFcpPWB0IVrZl1yrvY1VSKl_fD8,5986
|
|
46
|
+
tinybird/tb/modules/local_common.py,sha256=BrtNjF5UhoD522LhpNBVHfIkJMFaGuXYpvv7I4mm-dw,17171
|
|
47
|
+
tinybird/tb/modules/login.py,sha256=vZ7chla0mR9KlagUtLQLW_DxW9xkF3ZNTobavsfppyM,12545
|
|
48
|
+
tinybird/tb/modules/logout.py,sha256=sniI4JNxpTrVeRCp0oGJuQ3yRerG4hH5uz6oBmjv724,1009
|
|
49
|
+
tinybird/tb/modules/materialization.py,sha256=0O2JUCxLzz-DrXTUewVHlIyC6-Kyymw0hGXXDicMSHE,5403
|
|
50
|
+
tinybird/tb/modules/mock.py,sha256=rHJtbxIKpwnWcSK4nqb-tFlObmyn2G7hR7LNw3aeFWs,5321
|
|
51
|
+
tinybird/tb/modules/open.py,sha256=LYiuO8Z1I9O_v6pv58qpUCWFD6BT00BdeO21fRa4I4Y,1315
|
|
52
|
+
tinybird/tb/modules/pipe.py,sha256=xPKtezhnWZ6k_g82r4XpgKslofhuIxb_PvynH4gdUzI,2393
|
|
53
|
+
tinybird/tb/modules/project.py,sha256=pOcvtgsR0ibPi0sNu-6GuAI4WS2DORRALezisjN3xY8,5662
|
|
54
|
+
tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
55
|
+
tinybird/tb/modules/secret.py,sha256=fSOwsG-swZC65IesYKCEuCmtRCqIvXGT3DscyYTxMms,5149
|
|
56
|
+
tinybird/tb/modules/shell.py,sha256=_9PaKkkh6ZjkixVtKNAtoCPqXMXMn1aQJM_Xzirn7ZM,13621
|
|
57
|
+
tinybird/tb/modules/sink.py,sha256=dK2s__my0ePIUYrqBzhPSgdWN9rbpvP1G4dT7DJzz80,3865
|
|
58
|
+
tinybird/tb/modules/table.py,sha256=4XrtjM-N0zfNtxVkbvLDQQazno1EPXnxTyo7llivfXk,11035
|
|
59
|
+
tinybird/tb/modules/telemetry.py,sha256=T9gtsQffWqG_4hRBaUJPzOfMkPwz7mH-R6Bn1XRYViA,11482
|
|
60
|
+
tinybird/tb/modules/test.py,sha256=DH3ZnKEJfa_7OTO803ejDNAOV98bJV1-K6-mWKfJ-sA,13138
|
|
61
|
+
tinybird/tb/modules/token.py,sha256=DkXW9FNCLGBisXewfk195jTJ6B1Iz7zq3cEEac48aAs,12731
|
|
62
|
+
tinybird/tb/modules/watch.py,sha256=No0bK1M1_3CYuMaIgylxf7vYFJ72lTJe3brz6xQ-mJo,8819
|
|
63
|
+
tinybird/tb/modules/workspace.py,sha256=Q_8HcxMsNg8QG9aBlwcWS2umrDP5IkTIHqqz3sfmGuc,11341
|
|
64
|
+
tinybird/tb/modules/workspace_members.py,sha256=5JdkJgfuEwbq-t6vxkBhYwgsiTDxF790wsa6Xfif9nk,8608
|
|
65
|
+
tinybird/tb/modules/datafile/build.py,sha256=NFKBrusFLU0WJNCXePAFWiEDuTaXpwc0lHlOQWEJ43s,51117
|
|
66
|
+
tinybird/tb/modules/datafile/build_common.py,sha256=2yNdxe49IMA9wNvl25NemY2Iaz8L66snjOdT64dm1is,4511
|
|
67
|
+
tinybird/tb/modules/datafile/build_datasource.py,sha256=Ra8pVQBDafbFRUKlhpgohhTsRyp_ADKZJVG8Gd69idY,17227
|
|
68
|
+
tinybird/tb/modules/datafile/build_pipe.py,sha256=-mpzYcTEdH313R-FEDYuDOtAbZ5zehynzJwmtsfy16w,11262
|
|
69
|
+
tinybird/tb/modules/datafile/diff.py,sha256=vCwBxUtQskmZSu-UxscqdgFkEJ9i3t1U1F6RrX9wRrA,6674
|
|
70
|
+
tinybird/tb/modules/datafile/fixture.py,sha256=gftYWeweeQDFK3cHgUmSOfltNjZVOuMt8v7WTMLhGBw,1579
|
|
71
|
+
tinybird/tb/modules/datafile/format_common.py,sha256=5w6GX_8RDFueW9AtDfWpc1OicEu8wWdrjUBdCEidCQk,1951
|
|
72
|
+
tinybird/tb/modules/datafile/format_datasource.py,sha256=X5N65vDpprFKaWaxkSwFnHaNzYIxVhG1Sya4BARTd2Q,6138
|
|
73
|
+
tinybird/tb/modules/datafile/format_pipe.py,sha256=_64RGD8XI-gpQBMzhymUAVGMhpQK6zar_irDrJFQrHY,7378
|
|
74
|
+
tinybird/tb/modules/datafile/pipe_checker.py,sha256=dxsCQoA6ruxg1fvF6sMLFowpjaqws8lUQcM7XyhgZPE,24609
|
|
75
|
+
tinybird/tb/modules/datafile/playground.py,sha256=47q4XcvDhclHWYv7oFNEqmF1T5NXd9GPWkrT6Av2VhY,56343
|
|
76
|
+
tinybird/tb/modules/datafile/pull.py,sha256=oVQaMJktX9Es8E5tiO2SBONlbM-mRAY4f72OpASDPWg,4329
|
|
77
|
+
tinybird/tb/modules/tinyunit/tinyunit.py,sha256=sJeBnKDHcUNn8t0sdsKB_M2w8IdzeeQ1PzJuleeQ2-E,11695
|
|
78
|
+
tinybird/tb/modules/tinyunit/tinyunit_lib.py,sha256=hGh1ZaXC1af7rKnX7222urkj0QJMhMWclqMy59dOqwE,1922
|
|
79
|
+
tinybird/tb_cli_modules/cicd.py,sha256=0lMkb6CVOFZl5HOwgY8mK4T4mgI7O8335UngLXtCc-c,13851
|
|
80
|
+
tinybird/tb_cli_modules/common.py,sha256=G08f1_x5YSB6n-ncRj4tB2jhtjAjlWN-QD4xMWbTNQU,83033
|
|
81
|
+
tinybird/tb_cli_modules/config.py,sha256=IsgdtFRnUrkY8-Zo32lmk6O7u3bHie1QCxLwgp4ewgA,11546
|
|
82
|
+
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
83
|
+
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
84
|
+
tinybird/tb_cli_modules/telemetry.py,sha256=Hh2Io8ZPROSunbOLuMvuIFU4TqwWPmQTqal4WS09K1A,10449
|
|
85
|
+
tinybird-0.0.1.dev235.dist-info/METADATA,sha256=bqFXMTlHLyOTGGaRSBujVPJu530jgHjhfAVGQz4KpCk,1682
|
|
86
|
+
tinybird-0.0.1.dev235.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
87
|
+
tinybird-0.0.1.dev235.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
88
|
+
tinybird-0.0.1.dev235.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
|
|
89
|
+
tinybird-0.0.1.dev235.dist-info/RECORD,,
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
tinybird/connectors.py,sha256=7Gjms7b5MAaBFGi3xytsJurCylprONpFcYrzp4Fw2Rc,15241
|
|
2
|
-
tinybird/context.py,sha256=FfqYfrGX_I7PKGTQo93utaKPDNVYWelg4Hsp3evX5wM,1291
|
|
3
|
-
tinybird/datatypes.py,sha256=r4WCvspmrXTJHiPjjyOTiZyZl31FO3Ynkwq4LQsYm6E,11059
|
|
4
|
-
tinybird/feedback_manager.py,sha256=1INQFfRfuMCb9lfB8KNf4r6qC2khW568hoHjtk-wshI,69305
|
|
5
|
-
tinybird/git_settings.py,sha256=Sw_8rGmribEFJ4Z_6idrVytxpFYk7ez8ei0qHULzs3E,3934
|
|
6
|
-
tinybird/prompts.py,sha256=dg8Q8Q29X69j-PPP8KGooMz7-M3FNXEYqC0Fj0LcUbw,45316
|
|
7
|
-
tinybird/sql.py,sha256=BufnOgclQokDyihtuXesOwHBsebN6wRXIxO5wKRkOwE,48299
|
|
8
|
-
tinybird/sql_template.py,sha256=WjsTBjpQLVBHGZbY2dZuhZUurFR-rbJ_KRRy5vx4Y5E,99967
|
|
9
|
-
tinybird/sql_template_fmt.py,sha256=KUHdj5rYCYm_rKKdXYSJAE9vIyXUQLB0YSZnUXHeBlY,10196
|
|
10
|
-
tinybird/sql_toolset.py,sha256=M2rpLYkgV2W8NnYEYPC1tJdpy4uZHXVF64NBSKLQka4,19549
|
|
11
|
-
tinybird/syncasync.py,sha256=IPnOx6lMbf9SNddN1eBtssg8vCLHMt76SuZ6YNYm-Yk,27761
|
|
12
|
-
tinybird/tornado_template.py,sha256=jjNVDMnkYFWXflmT8KU_Ssbo5vR8KQq3EJMk5vYgXRw,41959
|
|
13
|
-
tinybird/ch_utils/constants.py,sha256=yEKR11gLCL-irEXXF9QwShaR0JLXiBTlaxfolcCIoqY,4097
|
|
14
|
-
tinybird/ch_utils/engine.py,sha256=X4tE9OrfaUy6kO9cqVEzyI9cDcmOF3IAssRRzsTsfEQ,40781
|
|
15
|
-
tinybird/datafile/common.py,sha256=p--Zn09A4CRaSUQKLDoN3ITAX6E_mOsfFjK8aY9fVRk,97217
|
|
16
|
-
tinybird/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
|
|
17
|
-
tinybird/datafile/parse_connection.py,sha256=tRyn2Rpr1TeWet5BXmMoQgaotbGdYep1qiTak_OqC5E,1825
|
|
18
|
-
tinybird/datafile/parse_datasource.py,sha256=ssW8QeFSgglVFi3sDZj_HgkJiTJ2069v2JgqnH3CkDE,1825
|
|
19
|
-
tinybird/datafile/parse_pipe.py,sha256=xf4m0Tw44QWJzHzAm7Z7FwUoUUtr7noMYjU1NiWnX0k,3880
|
|
20
|
-
tinybird/tb/__cli__.py,sha256=0UBC5RBj5wMDEwCGOSS0ufzt8GHPKZxxes7QxuvmHeo,247
|
|
21
|
-
tinybird/tb/check_pypi.py,sha256=i3l2L8IajeB7sreikR7oPlYJki9MtS3c_M4crnmbByc,760
|
|
22
|
-
tinybird/tb/cli.py,sha256=0xYk2Ip4vb3nNFbxfTdG3VoIgdRvUKVbUVU_mviErPA,1107
|
|
23
|
-
tinybird/tb/client.py,sha256=FKj61vY9STPW03kfVcxYuY1_csI-kP-mc1ERQfqJtg8,56505
|
|
24
|
-
tinybird/tb/config.py,sha256=jT9xndpeCY_g0HdB5qE2EquC0TFRRnkPnQFWZWd04jo,3998
|
|
25
|
-
tinybird/tb/modules/build.py,sha256=T36msoBK5g9AZlrJnFRPvlZbrdE265LY1q3Y4YqvS3w,20067
|
|
26
|
-
tinybird/tb/modules/cicd.py,sha256=H22MaMsqAeDv-OmeHFOlUOAmfNzEzTFaEV9TQ0g4ehs,7338
|
|
27
|
-
tinybird/tb/modules/cli.py,sha256=I1G7q3-hjYZuwq1GQoZd5_2i8btl33s6ms8I0yF5XDc,16332
|
|
28
|
-
tinybird/tb/modules/common.py,sha256=F6oaoFZ3aBxEMjiDKYhthsEIUqSFPkcdlMJ7h7A49Ac,83114
|
|
29
|
-
tinybird/tb/modules/config.py,sha256=VnzYVUo4q1RBEEMMce4_OCrKp4erhgkRPHElydVlKj0,11488
|
|
30
|
-
tinybird/tb/modules/connection.py,sha256=2W4fh7C5pKJryFnC2NUUIktF4xBs1ILqmHnzuEp3ftQ,17970
|
|
31
|
-
tinybird/tb/modules/copy.py,sha256=zHN1d5NA-MFsgbk2kKJq2P9qA8dNOnIsIa60QpVnSwc,4458
|
|
32
|
-
tinybird/tb/modules/create.py,sha256=56_x6nwj_oAr72X7AvdxXAuXCDKGJp-w1dP6E2XdxqU,23376
|
|
33
|
-
tinybird/tb/modules/datasource.py,sha256=9ncWkDVJ3dMc15q2GME40gHZf8REymOIjNn76m4CUNo,42028
|
|
34
|
-
tinybird/tb/modules/deployment.py,sha256=ByXIgEvwxB49pJEKKj0EJIfORWyflCYr04k8961nBkA,28391
|
|
35
|
-
tinybird/tb/modules/deprecations.py,sha256=rrszC1f_JJeJ8mUxGoCxckQTJFBCR8wREf4XXXN-PRc,4507
|
|
36
|
-
tinybird/tb/modules/dev_server.py,sha256=57FCKuWpErwYUYgHspYDkLWEm9F4pbvVOtMrFXX1fVU,10129
|
|
37
|
-
tinybird/tb/modules/endpoint.py,sha256=rC1CZiEZDMb5chByf4xZhv5PsfkoLeIVDScHQ-QcBsE,12072
|
|
38
|
-
tinybird/tb/modules/exceptions.py,sha256=5jK91w1LPmtqIUfDpHe_Op5OxGz8-p1BPgtLREMIni0,5217
|
|
39
|
-
tinybird/tb/modules/feedback_manager.py,sha256=5N2S_ymq0nJPQcFetzoQOWfR6hhx8_gaTp318pe76zU,77966
|
|
40
|
-
tinybird/tb/modules/info.py,sha256=lAhZZhrp4bIBXIZ8R27jfPWfv4DA4aePgqpXzHU8d1c,6962
|
|
41
|
-
tinybird/tb/modules/infra.py,sha256=fve30Gj3mG9zbquGxS2e4ipcOYOxviWQCpNFfEzJN_Q,33195
|
|
42
|
-
tinybird/tb/modules/job.py,sha256=AsUCRNzy7HG5oJ4fyk9NpIm5NtNJgBZSy8MtJdXBe5A,3167
|
|
43
|
-
tinybird/tb/modules/llm.py,sha256=QbHRcMLgFmLKEh4zVb2ctR_5tIGUGdFJrAiRCDtMxDw,1572
|
|
44
|
-
tinybird/tb/modules/llm_utils.py,sha256=nS9r4FAElJw8yXtmdYrx-rtI2zXR8qXfi1QqUDCfxvg,3469
|
|
45
|
-
tinybird/tb/modules/local.py,sha256=TWT7pGXQ3cOy0M_piyw7WhrzoxZE18PmfOLzHD5CoEc,6096
|
|
46
|
-
tinybird/tb/modules/local_common.py,sha256=8CSEVygFi0fIISatYxCStcHizugXCA9WNTLO_zDKmXw,17195
|
|
47
|
-
tinybird/tb/modules/login.py,sha256=VxxCzyjG5dpFm1lmlNPVcM-0-jqURAFp4HEkMMBdiGo,12617
|
|
48
|
-
tinybird/tb/modules/logout.py,sha256=sniI4JNxpTrVeRCp0oGJuQ3yRerG4hH5uz6oBmjv724,1009
|
|
49
|
-
tinybird/tb/modules/materialization.py,sha256=neugOziGfh50GSOgfZJX8giVPKgauoE313LUw6kXowo,5467
|
|
50
|
-
tinybird/tb/modules/mock.py,sha256=pp7NN79chzStHua4FKVMejI6NLYvzXjP6P7nzf6nSxM,5375
|
|
51
|
-
tinybird/tb/modules/open.py,sha256=OuctINN77oexpSjth9uoIZPCelKO4Li-yyVxeSnk1io,1371
|
|
52
|
-
tinybird/tb/modules/pipe.py,sha256=ExDOk3ze76JacNEVrN4DbIopNvSurDCSR7QR9ii2xGQ,2421
|
|
53
|
-
tinybird/tb/modules/project.py,sha256=pOcvtgsR0ibPi0sNu-6GuAI4WS2DORRALezisjN3xY8,5662
|
|
54
|
-
tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
55
|
-
tinybird/tb/modules/secret.py,sha256=jw1DIDKmS1L1U-y7LRYo65sVSGuRcpIHGo5CNiKHjo4,4945
|
|
56
|
-
tinybird/tb/modules/shell.py,sha256=Zd_4Ak_5tKVX-cw6B4ag36xZeEGHeh-jZpAsIXkoMoE,14116
|
|
57
|
-
tinybird/tb/modules/sink.py,sha256=bIjLjog4XH42yfp944cMnaE4il7Kl7Wn7F-nLKfH2Bc,3913
|
|
58
|
-
tinybird/tb/modules/table.py,sha256=4XrtjM-N0zfNtxVkbvLDQQazno1EPXnxTyo7llivfXk,11035
|
|
59
|
-
tinybird/tb/modules/telemetry.py,sha256=T9gtsQffWqG_4hRBaUJPzOfMkPwz7mH-R6Bn1XRYViA,11482
|
|
60
|
-
tinybird/tb/modules/test.py,sha256=ZRWzrYcoaUB16pAEAxtCaE0rgc1srMx7VuOTqvrpsjk,13318
|
|
61
|
-
tinybird/tb/modules/token.py,sha256=pSlDed5RzcadJlvIKQh22Y49gt1Rfw-0rCTko6x4y3g,12879
|
|
62
|
-
tinybird/tb/modules/watch.py,sha256=HhruZoUrehlxL_nFIK3BlpHp2uyzKAM9cmNXBCa4Zgs,8965
|
|
63
|
-
tinybird/tb/modules/workspace.py,sha256=ngn5yGG9K9sFaUzm0W42j_vQnm3pQS2Jh38GNgbMtP0,11607
|
|
64
|
-
tinybird/tb/modules/workspace_members.py,sha256=RYLpyPM1ECCasHRg3uvpckzXplX0_KgNFsSPZn_i6qk,8744
|
|
65
|
-
tinybird/tb/modules/datafile/build.py,sha256=SinuhM61FKdEt0MTV_4qfJFQ78dYndcmWHf_LMGe7Z8,51351
|
|
66
|
-
tinybird/tb/modules/datafile/build_common.py,sha256=LU24kAQmxDJIyoIapDaYG-SU3P4FrMG9UBf8m9PgVSI,4565
|
|
67
|
-
tinybird/tb/modules/datafile/build_datasource.py,sha256=1df45f4YmgiCxwr6_JbYVEJD9Sxp_Y9PfglQD09CIr0,17371
|
|
68
|
-
tinybird/tb/modules/datafile/build_pipe.py,sha256=Zc3e9Bw-2WX_6_9cMHFNa2ut9FUd1Yw8Yyj56CxdL1E,11374
|
|
69
|
-
tinybird/tb/modules/datafile/diff.py,sha256=SxJtZQ7Am1JGM-jmC1qEGmdCghz9s0RbWNwldUFsNnw,6746
|
|
70
|
-
tinybird/tb/modules/datafile/fixture.py,sha256=gftYWeweeQDFK3cHgUmSOfltNjZVOuMt8v7WTMLhGBw,1579
|
|
71
|
-
tinybird/tb/modules/datafile/format_common.py,sha256=5w6GX_8RDFueW9AtDfWpc1OicEu8wWdrjUBdCEidCQk,1951
|
|
72
|
-
tinybird/tb/modules/datafile/format_datasource.py,sha256=D2nZeofwcBV9h9SJsdSIYxUXZiubh7jbqixHSgQ2Uk4,6168
|
|
73
|
-
tinybird/tb/modules/datafile/format_pipe.py,sha256=ncehfeIcGlvW3tnXy9hpFzi7J7X-9zEXMXpWA6dzX5k,7414
|
|
74
|
-
tinybird/tb/modules/datafile/pipe_checker.py,sha256=dxsCQoA6ruxg1fvF6sMLFowpjaqws8lUQcM7XyhgZPE,24609
|
|
75
|
-
tinybird/tb/modules/datafile/playground.py,sha256=qRGahuXE7wynqcbAZLufDcHR1Yyr2ob3bg75_u2qxzc,56595
|
|
76
|
-
tinybird/tb/modules/datafile/pull.py,sha256=CP6-TVZ9ErrEOAFajn9HSEdq-GgYnOPHEIUAuReQGaM,4508
|
|
77
|
-
tinybird/tb/modules/tinyunit/tinyunit.py,sha256=qc3OHiXYSOv3TQCFRYrMnR47xJbUH0LnV4FBcBtWN1s,11713
|
|
78
|
-
tinybird/tb/modules/tinyunit/tinyunit_lib.py,sha256=hGh1ZaXC1af7rKnX7222urkj0QJMhMWclqMy59dOqwE,1922
|
|
79
|
-
tinybird/tb_cli_modules/cicd.py,sha256=0lMkb6CVOFZl5HOwgY8mK4T4mgI7O8335UngLXtCc-c,13851
|
|
80
|
-
tinybird/tb_cli_modules/common.py,sha256=G08f1_x5YSB6n-ncRj4tB2jhtjAjlWN-QD4xMWbTNQU,83033
|
|
81
|
-
tinybird/tb_cli_modules/config.py,sha256=IsgdtFRnUrkY8-Zo32lmk6O7u3bHie1QCxLwgp4ewgA,11546
|
|
82
|
-
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
83
|
-
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
84
|
-
tinybird/tb_cli_modules/telemetry.py,sha256=Hh2Io8ZPROSunbOLuMvuIFU4TqwWPmQTqal4WS09K1A,10449
|
|
85
|
-
tinybird-0.0.1.dev232.dist-info/METADATA,sha256=tYkjFtgiHT1P3mBLaOYdj53Z8RrUr_Bn5kp_x6u7mWA,1682
|
|
86
|
-
tinybird-0.0.1.dev232.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
87
|
-
tinybird-0.0.1.dev232.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
88
|
-
tinybird-0.0.1.dev232.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
|
|
89
|
-
tinybird-0.0.1.dev232.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|