tinybird 0.0.1.dev19__py3-none-any.whl → 0.0.1.dev21__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/client.py +2 -2
- tinybird/config.py +1 -1
- tinybird/feedback_manager.py +8 -30
- tinybird/prompts.py +2 -2
- tinybird/tb/__cli__.py +2 -2
- tinybird/tb/modules/auth.py +1 -1
- tinybird/tb/modules/build.py +10 -78
- tinybird/tb/modules/cicd.py +1 -1
- tinybird/tb/modules/cli.py +9 -837
- tinybird/tb/modules/common.py +1 -55
- tinybird/tb/modules/connection.py +1 -1
- tinybird/tb/modules/create.py +26 -13
- tinybird/tb/modules/datafile/build.py +142 -971
- tinybird/tb/modules/datafile/build_common.py +1 -1
- tinybird/tb/modules/datafile/build_datasource.py +1 -1
- tinybird/tb/modules/datafile/build_pipe.py +1 -1
- tinybird/tb/modules/datafile/common.py +11 -11
- tinybird/tb/modules/datafile/diff.py +1 -1
- tinybird/tb/modules/datafile/fixture.py +1 -1
- tinybird/tb/modules/datafile/format_common.py +0 -7
- tinybird/tb/modules/datafile/format_datasource.py +0 -2
- tinybird/tb/modules/datafile/format_pipe.py +0 -2
- tinybird/tb/modules/datafile/parse_datasource.py +1 -1
- tinybird/tb/modules/datafile/parse_pipe.py +1 -1
- tinybird/tb/modules/datafile/pull.py +1 -1
- tinybird/tb/modules/datasource.py +4 -75
- tinybird/tb/modules/feedback_manager.py +1048 -0
- tinybird/tb/modules/fmt.py +1 -1
- tinybird/tb/modules/job.py +1 -1
- tinybird/tb/modules/llm.py +15 -26
- tinybird/tb/modules/local.py +33 -32
- tinybird/tb/modules/local_common.py +2 -1
- tinybird/tb/modules/login.py +8 -8
- tinybird/tb/modules/mock.py +19 -9
- tinybird/tb/modules/pipe.py +4 -126
- tinybird/tb/modules/{build_shell.py → shell.py} +9 -21
- tinybird/tb/modules/table.py +88 -5
- tinybird/tb/modules/tag.py +2 -2
- tinybird/tb/modules/test.py +13 -15
- tinybird/tb/modules/tinyunit/tinyunit.py +1 -1
- tinybird/tb/modules/token.py +2 -2
- tinybird/tb/modules/watch.py +72 -0
- tinybird/tb/modules/workspace.py +1 -1
- tinybird/tb/modules/workspace_members.py +1 -1
- {tinybird-0.0.1.dev19.dist-info → tinybird-0.0.1.dev21.dist-info}/METADATA +1 -1
- tinybird-0.0.1.dev21.dist-info/RECORD +76 -0
- tinybird-0.0.1.dev19.dist-info/RECORD +0 -74
- {tinybird-0.0.1.dev19.dist-info → tinybird-0.0.1.dev21.dist-info}/WHEEL +0 -0
- {tinybird-0.0.1.dev19.dist-info → tinybird-0.0.1.dev21.dist-info}/entry_points.txt +0 -0
- {tinybird-0.0.1.dev19.dist-info → tinybird-0.0.1.dev21.dist-info}/top_level.txt +0 -0
tinybird/tb/modules/table.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Standard library modules.
|
|
2
2
|
import collections
|
|
3
3
|
import re
|
|
4
|
+
from typing import Union
|
|
4
5
|
|
|
5
6
|
# Modules included in our package.
|
|
6
7
|
from humanfriendly.compat import coerce_string
|
|
7
|
-
from humanfriendly.tables import format_robust_table
|
|
8
8
|
from humanfriendly.terminal import (
|
|
9
9
|
ansi_strip,
|
|
10
10
|
ansi_width,
|
|
@@ -13,7 +13,7 @@ from humanfriendly.terminal import (
|
|
|
13
13
|
terminal_supports_colors,
|
|
14
14
|
)
|
|
15
15
|
|
|
16
|
-
from tinybird.feedback_manager import bcolors
|
|
16
|
+
from tinybird.tb.modules.feedback_manager import bcolors
|
|
17
17
|
|
|
18
18
|
NUMERIC_DATA_PATTERN = re.compile(r"^\d+(\.\d+)?$")
|
|
19
19
|
|
|
@@ -133,7 +133,7 @@ def format_pretty_table(data, column_names=None, column_types=None, horizontal_b
|
|
|
133
133
|
column_types = [highlight_column_type(t) for t in column_types]
|
|
134
134
|
data.insert(1, column_types)
|
|
135
135
|
# Calculate the maximum width of each column.
|
|
136
|
-
widths = collections.defaultdict(int)
|
|
136
|
+
widths: dict[int, int] = collections.defaultdict(int)
|
|
137
137
|
numeric_data = collections.defaultdict(list)
|
|
138
138
|
for row_index, row in enumerate(data):
|
|
139
139
|
for column_index, column in enumerate(row):
|
|
@@ -177,9 +177,92 @@ def highlight_column_name(name):
|
|
|
177
177
|
return ansi_wrap(name)
|
|
178
178
|
|
|
179
179
|
|
|
180
|
+
def highlight_column_name_robust(name):
|
|
181
|
+
return f"{bcolors.CGREY}{name}{bcolors.ENDC}"
|
|
182
|
+
|
|
183
|
+
|
|
180
184
|
def highlight_column_type(type):
|
|
181
185
|
return f"{bcolors.CGREY}\033[3m{type}\033[23m{bcolors.ENDC}"
|
|
182
186
|
|
|
183
187
|
|
|
184
|
-
def highlight_horizontal_bar(horizontal_bar):
|
|
185
|
-
return f"
|
|
188
|
+
def highlight_horizontal_bar(horizontal_bar: str) -> str:
|
|
189
|
+
return f"\033[38;5;247m\033[3m{horizontal_bar}\033[23m{bcolors.ENDC}"
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
def format_robust_table(data, column_names):
|
|
193
|
+
"""
|
|
194
|
+
Render tabular data with one column per line (allowing columns with line breaks).
|
|
195
|
+
|
|
196
|
+
:param data: An iterable (e.g. a :func:`tuple` or :class:`list`)
|
|
197
|
+
containing the rows of the table, where each row is an
|
|
198
|
+
iterable containing the columns of the table (strings).
|
|
199
|
+
:param column_names: An iterable of column names (strings).
|
|
200
|
+
:returns: The rendered table (a string).
|
|
201
|
+
|
|
202
|
+
Here's an example:
|
|
203
|
+
|
|
204
|
+
>>> from humanfriendly.tables import format_robust_table
|
|
205
|
+
>>> column_names = ['Version', 'Uploaded on', 'Downloads']
|
|
206
|
+
>>> humanfriendly_releases = [
|
|
207
|
+
... ['1.23', '2015-05-25', '218'],
|
|
208
|
+
... ['1.23.1', '2015-05-26', '1354'],
|
|
209
|
+
... ['1.24', '2015-05-26', '223'],
|
|
210
|
+
... ['1.25', '2015-05-26', '4319'],
|
|
211
|
+
... ['1.25.1', '2015-06-02', '197'],
|
|
212
|
+
... ]
|
|
213
|
+
>>> print(format_robust_table(humanfriendly_releases, column_names))
|
|
214
|
+
-----------------------
|
|
215
|
+
Version: 1.23
|
|
216
|
+
Uploaded on: 2015-05-25
|
|
217
|
+
Downloads: 218
|
|
218
|
+
-----------------------
|
|
219
|
+
Version: 1.23.1
|
|
220
|
+
Uploaded on: 2015-05-26
|
|
221
|
+
Downloads: 1354
|
|
222
|
+
-----------------------
|
|
223
|
+
Version: 1.24
|
|
224
|
+
Uploaded on: 2015-05-26
|
|
225
|
+
Downloads: 223
|
|
226
|
+
-----------------------
|
|
227
|
+
Version: 1.25
|
|
228
|
+
Uploaded on: 2015-05-26
|
|
229
|
+
Downloads: 4319
|
|
230
|
+
-----------------------
|
|
231
|
+
Version: 1.25.1
|
|
232
|
+
Uploaded on: 2015-06-02
|
|
233
|
+
Downloads: 197
|
|
234
|
+
-----------------------
|
|
235
|
+
|
|
236
|
+
The column names are highlighted in bold font and color so they stand out a
|
|
237
|
+
bit more (see :data:`.HIGHLIGHT_COLOR`).
|
|
238
|
+
"""
|
|
239
|
+
blocks: list[Union[str, list[str]]] = []
|
|
240
|
+
column_names = ["%s:" % n for n in normalize_columns(column_names)]
|
|
241
|
+
if terminal_supports_colors():
|
|
242
|
+
column_names = [highlight_column_name_robust(n) for n in column_names]
|
|
243
|
+
# Convert each row into one or more `name: value' lines (one per column)
|
|
244
|
+
# and group each `row of lines' into a block (i.e. rows become blocks).
|
|
245
|
+
for row in data:
|
|
246
|
+
lines = []
|
|
247
|
+
for column_index, column_text in enumerate(normalize_columns(row)):
|
|
248
|
+
stripped_column = column_text.strip()
|
|
249
|
+
if "\n" not in stripped_column:
|
|
250
|
+
# Columns without line breaks are formatted inline.
|
|
251
|
+
lines.append("%s %s" % (column_names[column_index], stripped_column))
|
|
252
|
+
else:
|
|
253
|
+
# Columns with line breaks could very well contain indented
|
|
254
|
+
# lines, so we'll put the column name on a separate line. This
|
|
255
|
+
# way any indentation remains intact, and it's easier to
|
|
256
|
+
# copy/paste the text.
|
|
257
|
+
lines.append(column_names[column_index])
|
|
258
|
+
lines.extend(column_text.rstrip().splitlines())
|
|
259
|
+
blocks.append(lines)
|
|
260
|
+
# Calculate the width of the row delimiter.
|
|
261
|
+
num_rows, num_columns = find_terminal_size()
|
|
262
|
+
longest_line = max(max(map(ansi_width, lines)) for lines in blocks)
|
|
263
|
+
delimiter = highlight_horizontal_bar("\n%s\n" % ("─" * min(longest_line, num_columns)))
|
|
264
|
+
# Force a delimiter at the start and end of the table.
|
|
265
|
+
blocks.insert(0, "")
|
|
266
|
+
blocks.append("")
|
|
267
|
+
# Embed the row delimiter between every two blocks.
|
|
268
|
+
return delimiter.join("\n".join(b) for b in blocks).strip()
|
tinybird/tb/modules/tag.py
CHANGED
|
@@ -3,12 +3,12 @@ from typing import Optional
|
|
|
3
3
|
import click
|
|
4
4
|
from click import Context
|
|
5
5
|
|
|
6
|
-
from tinybird.feedback_manager import FeedbackManager
|
|
7
6
|
from tinybird.tb.modules.cli import cli
|
|
8
7
|
from tinybird.tb.modules.common import coro, echo_safe_humanfriendly_tables_format_smart_table
|
|
8
|
+
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
@cli.group()
|
|
11
|
+
@cli.group(hidden=True)
|
|
12
12
|
@click.pass_context
|
|
13
13
|
def tag(ctx: Context) -> None:
|
|
14
14
|
"""Tag commands"""
|
tinybird/tb/modules/test.py
CHANGED
|
@@ -7,20 +7,20 @@ import difflib
|
|
|
7
7
|
import glob
|
|
8
8
|
import os
|
|
9
9
|
from pathlib import Path
|
|
10
|
-
from typing import Iterable, List, Optional, Tuple
|
|
10
|
+
from typing import Any, Dict, Iterable, List, Optional, Tuple
|
|
11
11
|
|
|
12
12
|
import click
|
|
13
13
|
import yaml
|
|
14
14
|
|
|
15
|
-
from tinybird.feedback_manager import FeedbackManager
|
|
16
15
|
from tinybird.tb.modules.cli import cli
|
|
17
16
|
from tinybird.tb.modules.common import coro
|
|
18
17
|
from tinybird.tb.modules.config import CLIConfig
|
|
19
18
|
from tinybird.tb.modules.exceptions import CLIException
|
|
20
|
-
from tinybird.tb.modules.
|
|
19
|
+
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
20
|
+
from tinybird.tb.modules.llm import LLM
|
|
21
21
|
from tinybird.tb.modules.local_common import get_tinybird_local_client
|
|
22
22
|
|
|
23
|
-
yaml.SafeDumper.org_represent_str = yaml.SafeDumper.represent_str
|
|
23
|
+
yaml.SafeDumper.org_represent_str = yaml.SafeDumper.represent_str # type: ignore[attr-defined]
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
def repr_str(dumper, data):
|
|
@@ -32,7 +32,7 @@ def repr_str(dumper, data):
|
|
|
32
32
|
yaml.add_representer(str, repr_str, Dumper=yaml.SafeDumper)
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
def generate_test_file(pipe_name: str, tests: List[
|
|
35
|
+
def generate_test_file(pipe_name: str, tests: List[Dict[str, Any]], folder: Optional[str], mode: str = "w"):
|
|
36
36
|
base = Path("tests")
|
|
37
37
|
if folder:
|
|
38
38
|
base = Path(folder) / base
|
|
@@ -65,9 +65,8 @@ def test(ctx: click.Context) -> None:
|
|
|
65
65
|
help="Folder where datafiles will be placed",
|
|
66
66
|
)
|
|
67
67
|
@click.option("--prompt", type=str, default=None, help="Prompt to be used to create the test")
|
|
68
|
-
@click.pass_context
|
|
69
68
|
@coro
|
|
70
|
-
async def test_create(
|
|
69
|
+
async def test_create(pipe: str, prompt: Optional[str], folder: str) -> None:
|
|
71
70
|
"""
|
|
72
71
|
Create a test for an existing endpoint
|
|
73
72
|
"""
|
|
@@ -90,11 +89,12 @@ async def test_create(ctx: click.Context, pipe: str, prompt: Optional[str], fold
|
|
|
90
89
|
pipe_nodes = await client._req(f"/v0/pipes/{pipe_name}")
|
|
91
90
|
pipe_params = set([param["name"] for node in pipe_nodes["nodes"] for param in node["params"]])
|
|
92
91
|
|
|
93
|
-
|
|
94
|
-
|
|
92
|
+
config = CLIConfig.get_project_config(folder)
|
|
93
|
+
user_token = config.get_user_token()
|
|
94
|
+
llm = LLM(user_token=user_token, client=config.get_client())
|
|
95
95
|
|
|
96
|
-
test_expectations = await llm.
|
|
97
|
-
pipe_content=pipe_content, pipe_params=pipe_params,
|
|
96
|
+
test_expectations = await llm.create_tests(
|
|
97
|
+
pipe_content=pipe_content, pipe_params=pipe_params, prompt=prompt or ""
|
|
98
98
|
)
|
|
99
99
|
valid_test_expectations = []
|
|
100
100
|
for test in test_expectations.tests:
|
|
@@ -137,11 +137,9 @@ async def test_create(ctx: click.Context, pipe: str, prompt: Optional[str], fold
|
|
|
137
137
|
type=click.Path(exists=True, file_okay=False),
|
|
138
138
|
help="Folder where datafiles will be placed",
|
|
139
139
|
)
|
|
140
|
-
@click.pass_context
|
|
141
140
|
@coro
|
|
142
|
-
async def test_update(
|
|
141
|
+
async def test_update(pipe: str, folder: str) -> None:
|
|
143
142
|
client = await get_tinybird_local_client(os.path.abspath(folder))
|
|
144
|
-
|
|
145
143
|
pipe_tests_path = Path(pipe)
|
|
146
144
|
pipe_name = pipe
|
|
147
145
|
if pipe_tests_path.suffix == ".yaml":
|
|
@@ -186,7 +184,7 @@ async def test_update(ctx: click.Context, pipe: str, folder: Optional[str]) -> N
|
|
|
186
184
|
help="Folder where tests will be placed",
|
|
187
185
|
)
|
|
188
186
|
@coro
|
|
189
|
-
async def test_run(name: Tuple[str, ...], folder:
|
|
187
|
+
async def test_run(name: Tuple[str, ...], folder: str) -> None:
|
|
190
188
|
client = await get_tinybird_local_client(os.path.abspath(folder))
|
|
191
189
|
paths = [Path(n) for n in name]
|
|
192
190
|
endpoints = [f"./tests/{p.stem}.yaml" for p in paths]
|
|
@@ -8,8 +8,8 @@ from humanfriendly.tables import format_smart_table
|
|
|
8
8
|
from typing_extensions import override
|
|
9
9
|
|
|
10
10
|
from tinybird.client import TinyB
|
|
11
|
-
from tinybird.feedback_manager import FeedbackManager
|
|
12
11
|
from tinybird.tb.modules.common import CLIException
|
|
12
|
+
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
@dataclass
|
tinybird/tb/modules/token.py
CHANGED
|
@@ -7,7 +7,6 @@ from click import Context
|
|
|
7
7
|
from humanfriendly import parse_timespan
|
|
8
8
|
|
|
9
9
|
from tinybird.client import AuthNoTokenException, TinyB
|
|
10
|
-
from tinybird.feedback_manager import FeedbackManager
|
|
11
10
|
from tinybird.tb.modules.cli import cli
|
|
12
11
|
from tinybird.tb.modules.common import (
|
|
13
12
|
DoesNotExistException,
|
|
@@ -15,9 +14,10 @@ from tinybird.tb.modules.common import (
|
|
|
15
14
|
echo_safe_humanfriendly_tables_format_smart_table,
|
|
16
15
|
)
|
|
17
16
|
from tinybird.tb.modules.exceptions import CLITokenException
|
|
17
|
+
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
@cli.group()
|
|
20
|
+
@cli.group(hidden=True)
|
|
21
21
|
@click.pass_context
|
|
22
22
|
def token(ctx: Context) -> None:
|
|
23
23
|
"""Token commands."""
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import asyncio
|
|
2
|
+
import time
|
|
3
|
+
from typing import Any, Callable, List
|
|
4
|
+
|
|
5
|
+
import click
|
|
6
|
+
from watchdog.events import FileSystemEventHandler
|
|
7
|
+
from watchdog.observers import Observer
|
|
8
|
+
|
|
9
|
+
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
10
|
+
from tinybird.tb.modules.shell import Shell
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class FileChangeHandler(FileSystemEventHandler):
|
|
14
|
+
def __init__(self, filenames: List[str], process: Callable[[List[str]], None], build_ok: bool):
|
|
15
|
+
self.filenames = filenames
|
|
16
|
+
self.process = process
|
|
17
|
+
self.build_ok = build_ok
|
|
18
|
+
|
|
19
|
+
def on_modified(self, event: Any) -> None:
|
|
20
|
+
is_not_vendor = "vendor/" not in event.src_path
|
|
21
|
+
if (
|
|
22
|
+
is_not_vendor
|
|
23
|
+
and not event.is_directory
|
|
24
|
+
and any(event.src_path.endswith(ext) for ext in [".datasource", ".pipe", ".ndjson"])
|
|
25
|
+
):
|
|
26
|
+
filename = event.src_path.split("/")[-1]
|
|
27
|
+
click.echo(FeedbackManager.highlight(message=f"\n\n⟲ Changes detected in {filename}\n"))
|
|
28
|
+
try:
|
|
29
|
+
to_process = [event.src_path] if self.build_ok else self.filenames
|
|
30
|
+
self.process(to_process)
|
|
31
|
+
self.build_ok = True
|
|
32
|
+
except Exception as e:
|
|
33
|
+
click.echo(FeedbackManager.error_exception(error=e))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def watch_files(
|
|
37
|
+
filenames: List[str],
|
|
38
|
+
process: Callable,
|
|
39
|
+
shell: Shell,
|
|
40
|
+
folder: str,
|
|
41
|
+
build_ok: bool,
|
|
42
|
+
) -> None:
|
|
43
|
+
# Handle both sync and async process functions
|
|
44
|
+
async def process_wrapper(files: List[str]) -> None:
|
|
45
|
+
click.echo("⚡ Rebuilding...")
|
|
46
|
+
time_start = time.time()
|
|
47
|
+
if asyncio.iscoroutinefunction(process):
|
|
48
|
+
await process(files, watch=True)
|
|
49
|
+
else:
|
|
50
|
+
process(files, watch=True)
|
|
51
|
+
time_end = time.time()
|
|
52
|
+
elapsed_time = time_end - time_start
|
|
53
|
+
click.echo(
|
|
54
|
+
FeedbackManager.success(message="\n✓ ")
|
|
55
|
+
+ FeedbackManager.gray(message=f"Rebuild completed in {elapsed_time:.1f}s")
|
|
56
|
+
)
|
|
57
|
+
shell.reprint_prompt()
|
|
58
|
+
|
|
59
|
+
event_handler = FileChangeHandler(filenames, lambda f: asyncio.run(process_wrapper(f)), build_ok)
|
|
60
|
+
observer = Observer()
|
|
61
|
+
|
|
62
|
+
observer.schedule(event_handler, path=folder, recursive=True)
|
|
63
|
+
|
|
64
|
+
observer.start()
|
|
65
|
+
|
|
66
|
+
try:
|
|
67
|
+
while True:
|
|
68
|
+
time.sleep(1)
|
|
69
|
+
except KeyboardInterrupt:
|
|
70
|
+
observer.stop()
|
|
71
|
+
|
|
72
|
+
observer.join()
|
tinybird/tb/modules/workspace.py
CHANGED
|
@@ -10,7 +10,6 @@ from click import Context
|
|
|
10
10
|
|
|
11
11
|
from tinybird.client import CanNotBeDeletedException, DoesNotExistException, TinyB
|
|
12
12
|
from tinybird.config import get_display_host
|
|
13
|
-
from tinybird.feedback_manager import FeedbackManager
|
|
14
13
|
from tinybird.tb.modules.cli import cli
|
|
15
14
|
from tinybird.tb.modules.common import (
|
|
16
15
|
_get_workspace_plan_name,
|
|
@@ -28,6 +27,7 @@ from tinybird.tb.modules.common import (
|
|
|
28
27
|
from tinybird.tb.modules.config import CLIConfig
|
|
29
28
|
from tinybird.tb.modules.datafile.common import PipeTypes
|
|
30
29
|
from tinybird.tb.modules.exceptions import CLIWorkspaceException
|
|
30
|
+
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
@cli.group()
|
|
@@ -12,7 +12,6 @@ from click import Context
|
|
|
12
12
|
|
|
13
13
|
from tinybird.client import TinyB
|
|
14
14
|
from tinybird.config import get_display_host
|
|
15
|
-
from tinybird.feedback_manager import FeedbackManager
|
|
16
15
|
from tinybird.tb.modules.common import (
|
|
17
16
|
ask_for_user_token,
|
|
18
17
|
check_user_token,
|
|
@@ -22,6 +21,7 @@ from tinybird.tb.modules.common import (
|
|
|
22
21
|
)
|
|
23
22
|
from tinybird.tb.modules.config import CLIConfig
|
|
24
23
|
from tinybird.tb.modules.exceptions import CLIWorkspaceMembersException
|
|
24
|
+
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
25
25
|
from tinybird.tb.modules.workspace import workspace
|
|
26
26
|
|
|
27
27
|
ROLES = ["viewer", "guest", "admin"]
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
tinybird/__cli__.py,sha256=pgYsVLcqL16wtSn6KtKweNZYoYJdEksTgSvQAW7hH64,250
|
|
2
|
+
tinybird/client.py,sha256=xM9Czi9JRjt3VpTAoe2di4m36VYIT3ngpn-DgkWFv-Y,51505
|
|
3
|
+
tinybird/config.py,sha256=NXro9Itgex3QaHbC2InnqyCluc6bMqIwZIJ0xh1wdnw,6147
|
|
4
|
+
tinybird/connectors.py,sha256=lkpVSUmSuViEZBa4QjTK7YmPHUop0a5UFoTrSmlVq6k,15244
|
|
5
|
+
tinybird/context.py,sha256=kutUQ0kCwparowI74_YLXx6wtTzGLRouJ6oGHVBPzBo,1291
|
|
6
|
+
tinybird/datatypes.py,sha256=IHyhZ86ib54Vnd1pbod9y2aS8DDvDKZm1HJGlThdbuQ,10460
|
|
7
|
+
tinybird/feedback_manager.py,sha256=cNUbt0Jxim02UiIdlyP12DJfXfFFzxDCfJK9XRWZ9A0,67488
|
|
8
|
+
tinybird/git_settings.py,sha256=XUL9ZUj59-ZVQJDYmMEq4UpnuuOuQOHGlNcX3JgQHjQ,3954
|
|
9
|
+
tinybird/prompts.py,sha256=t2AuOlyBy7dEOuZcUVZzTXExP7VnK337u7z-GftSY-Q,6410
|
|
10
|
+
tinybird/sql.py,sha256=gfRKjdqEygcE1WOTeQ1QV2Jal8Jzl4RSX8fftu1KSEs,45825
|
|
11
|
+
tinybird/sql_template.py,sha256=IqYRfUxDYBCoOYjqqvn--_8QXLv9FSRnJ0bInx7q1Xs,93051
|
|
12
|
+
tinybird/sql_template_fmt.py,sha256=1z-PuqSZXtzso8Z_mPqUc-NxIxUrNUcVIPezNieZk-M,10196
|
|
13
|
+
tinybird/sql_toolset.py,sha256=xS_yD5N_TZT5d4uPcXdeIYX4GQPz7-7wHywMGdfgqcM,13794
|
|
14
|
+
tinybird/syncasync.py,sha256=fAvq0qkRgqXqXMKwbY2iJNYqLT_r6mDsh1MRpGKrdRU,27763
|
|
15
|
+
tinybird/tornado_template.py,sha256=o2HguxrL1Evnt8o3IvrsI8Zm6JtRQ3zhLJKf1XyR3SQ,41965
|
|
16
|
+
tinybird/ch_utils/constants.py,sha256=aYvg2C_WxYWsnqPdZB1ZFoIr8ZY-XjUXYyHKE9Ansj0,3890
|
|
17
|
+
tinybird/ch_utils/engine.py,sha256=OXkBhlzGjZotjD0vaT-rFIbSGV4tpiHxE8qO_ip0SyQ,40454
|
|
18
|
+
tinybird/tb/__cli__.py,sha256=1VxxptKXBoOejwGSsyZYVR5OdTVsLgpfAiAB6C5DI3c,251
|
|
19
|
+
tinybird/tb/cli.py,sha256=onCxcKvTV4RuokC5V3t82OXWAIwgU6pMWs8rpWOUi_o,815
|
|
20
|
+
tinybird/tb/modules/auth.py,sha256=EzRWFmwRkXNhUmRaruEVFLdkbUg8xMSix0cAWl5D4Jg,9029
|
|
21
|
+
tinybird/tb/modules/build.py,sha256=qJsmJCphanQitSnv86dqeoThM7mOg9Yg9JJLQjQ56ws,7074
|
|
22
|
+
tinybird/tb/modules/cicd.py,sha256=SjCyvvy0WUnsjFs2biwwXvcf0Ddpmghhd8-SnMyfsRM,5355
|
|
23
|
+
tinybird/tb/modules/cli.py,sha256=rHfc93DFFSQfWrAX-JBFrcZF43ttk7lYtYTBTn9TdMU,20004
|
|
24
|
+
tinybird/tb/modules/common.py,sha256=shaF6GIl2L9e3Rm8aFsIIollSNSBsb2ozBklpnsmRTc,70560
|
|
25
|
+
tinybird/tb/modules/config.py,sha256=ri4Gwyzqol6-NofTjHnWquuDzJOjHbkaAnboO8JNENY,11499
|
|
26
|
+
tinybird/tb/modules/connection.py,sha256=FhDM-OAnLN2epbO2YonpjJQhHqBjyuanBsZmKlDXrqg,28679
|
|
27
|
+
tinybird/tb/modules/create.py,sha256=kHmHoPIXh7V1opRzKKDm0q4UbZ6rz9tJwWMsUroA3I8,10371
|
|
28
|
+
tinybird/tb/modules/datasource.py,sha256=3ySFOTXVnuqwQQNJBYhD8Sq41S2BJO2ymZRsFmEvHqY,32899
|
|
29
|
+
tinybird/tb/modules/exceptions.py,sha256=4A2sSjCEqKUMqpP3WI00zouCWW4uLaghXXLZBSw04mY,3363
|
|
30
|
+
tinybird/tb/modules/feedback_manager.py,sha256=a76KSrIdtNT5cs56jMYUfpqoXMwEPq_SErRGlX0i4hc,68384
|
|
31
|
+
tinybird/tb/modules/fmt.py,sha256=poh6_cwVGSf-sBu6LKWuO2TANL_J8Sgm25sPpwxa3Aw,3558
|
|
32
|
+
tinybird/tb/modules/job.py,sha256=956Pj8BEEsiD2GZsV9RKKVM3I_CveOLgS82lykO5ukk,2963
|
|
33
|
+
tinybird/tb/modules/llm.py,sha256=9oJzI213eFv68Ttcfl3XNgEetaxfr6m56s2-IyBhNZ8,2713
|
|
34
|
+
tinybird/tb/modules/local.py,sha256=xWUVQzGw2bdWrezJd2Qa3YmXnpg4VdGtQduJpPfKMck,5194
|
|
35
|
+
tinybird/tb/modules/local_common.py,sha256=oemeKBCdEkNHXuGv1p6I9vhjkSXvqDsV5kT-rPN3mvk,2145
|
|
36
|
+
tinybird/tb/modules/login.py,sha256=KYGpM35fsjIVkp04Xm1kHvlEOXysRSvLfBUNTxNx26A,6044
|
|
37
|
+
tinybird/tb/modules/mock.py,sha256=BbDe60Qdlxg5-WewxFYRPETNBExj1qqBn5Ngz5T8G2Q,3231
|
|
38
|
+
tinybird/tb/modules/pipe.py,sha256=eYmMBiSj1Ur_hXUs74YZ9mCSAyiICDmkuKuTemlxPUY,27018
|
|
39
|
+
tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
40
|
+
tinybird/tb/modules/shell.py,sha256=OfFQ4lx3v_XSTr5cm_mTDG6CLc3zFdikM2pOamifG84,13469
|
|
41
|
+
tinybird/tb/modules/table.py,sha256=4XrtjM-N0zfNtxVkbvLDQQazno1EPXnxTyo7llivfXk,11035
|
|
42
|
+
tinybird/tb/modules/tag.py,sha256=anPmMUBc-TbFovlpFi8GPkKA18y7Y0GczMsMms5TZsU,3502
|
|
43
|
+
tinybird/tb/modules/telemetry.py,sha256=iEGnMuCuNhvF6ln__j6X9MSTwL_0Hm-GgFHHHvhfknk,10466
|
|
44
|
+
tinybird/tb/modules/test.py,sha256=loB9lNbtHuHcF9TwBJJLEkSyQakxnyUTHmCFYVsMnDA,8833
|
|
45
|
+
tinybird/tb/modules/token.py,sha256=AePr-QMv_vtWwZDWQ92Zp0kPrCjze61i4npiPhoLMZg,12717
|
|
46
|
+
tinybird/tb/modules/watch.py,sha256=xCIUvqTgeb2s63CYw26czgUGV3zzJpdmuyHGH2TLp1E,2349
|
|
47
|
+
tinybird/tb/modules/workspace.py,sha256=6icAgnTvfL3d1kx4L1Z1cGXCD_2Yx0fNRjbZHNxRbYc,10927
|
|
48
|
+
tinybird/tb/modules/workspace_members.py,sha256=Ai6iCOzXX1zQ8q9iXIFSFHsBJlT-8Q28DaG5Ie-UweY,8726
|
|
49
|
+
tinybird/tb/modules/datafile/build.py,sha256=ICr9FvWQfW99aKnygbUOZPvivD6qaR31ZsQ7nNI2GLg,54309
|
|
50
|
+
tinybird/tb/modules/datafile/build_common.py,sha256=IXl-Z51zUi1dypV7meNenX0iu2UmowNeqgG6WHyMHlk,4562
|
|
51
|
+
tinybird/tb/modules/datafile/build_datasource.py,sha256=4aP8_DYCRGghXntZSeWDNJxjps1QRVa7WHoYCzQwQts,17355
|
|
52
|
+
tinybird/tb/modules/datafile/build_pipe.py,sha256=iu6_1eNEI5f2wm7AfDhLyMCwsqBtrAwkP_1yL4XTHOs,27659
|
|
53
|
+
tinybird/tb/modules/datafile/common.py,sha256=yt1C_4ZtWokAyUtR2qYZ6tBCtH7EJFMbehpJ6FeHHZE,75652
|
|
54
|
+
tinybird/tb/modules/datafile/diff.py,sha256=-0J7PsBO64T7LOZSkZ4ZFHHCPvT7cKItnJkbz2PkndU,6754
|
|
55
|
+
tinybird/tb/modules/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
|
|
56
|
+
tinybird/tb/modules/datafile/fixture.py,sha256=Oc4eA1Pgwl3prEgEmsH2Ip8XXQ7dG6lyqOjMCUN852M,1779
|
|
57
|
+
tinybird/tb/modules/datafile/format_common.py,sha256=WaNV4tXrQU5gjV6MJP-5TGqg_Bre6ilNS8emvFl-X3c,1967
|
|
58
|
+
tinybird/tb/modules/datafile/format_datasource.py,sha256=xXs8uL3N546CFMOFwqJpJdz-6YD01IfUVwNvWKgeMwY,6156
|
|
59
|
+
tinybird/tb/modules/datafile/format_pipe.py,sha256=XJAtwJeq9gCwNyaVK3qpBRH-Y2Tpi2YPA7sR3O5yVD4,7418
|
|
60
|
+
tinybird/tb/modules/datafile/parse_datasource.py,sha256=NewT4TSDYlQOWEewtea50nQCLYAVu7DUXnc-vs-X8aI,1475
|
|
61
|
+
tinybird/tb/modules/datafile/parse_pipe.py,sha256=tEEj41HPYxTzyZi2Ug3rpXmKl2Agh_1PoBB-JMZQyAQ,2925
|
|
62
|
+
tinybird/tb/modules/datafile/pipe_checker.py,sha256=cp80Bru41GlyMRvyERpdJNXns2MjmtIAWFnBLF4cPXs,24667
|
|
63
|
+
tinybird/tb/modules/datafile/pull.py,sha256=vcjMUbjnZ9XQMGmL33J3ElpbXBTat8Yzp-haeDggZd4,5967
|
|
64
|
+
tinybird/tb/modules/tinyunit/tinyunit.py,sha256=3EBqKzNCfyDuZiO4H61ihanFBRLFUGeuXf3nDXnYFcU,11727
|
|
65
|
+
tinybird/tb/modules/tinyunit/tinyunit_lib.py,sha256=hGh1ZaXC1af7rKnX7222urkj0QJMhMWclqMy59dOqwE,1922
|
|
66
|
+
tinybird/tb_cli_modules/cicd.py,sha256=0lMkb6CVOFZl5HOwgY8mK4T4mgI7O8335UngLXtCc-c,13851
|
|
67
|
+
tinybird/tb_cli_modules/common.py,sha256=JJwkLUcTbTonf1NWe4tUeenQGMr82d2152hnSs6k6Zc,78706
|
|
68
|
+
tinybird/tb_cli_modules/config.py,sha256=6NTgIdwf0X132A1j6G_YrdPep87ymZ9b5pABabKLzh4,11484
|
|
69
|
+
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
70
|
+
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
71
|
+
tinybird/tb_cli_modules/telemetry.py,sha256=iEGnMuCuNhvF6ln__j6X9MSTwL_0Hm-GgFHHHvhfknk,10466
|
|
72
|
+
tinybird-0.0.1.dev21.dist-info/METADATA,sha256=FMzNtUcWW-VbxL1Fvu5zVrBsEJb0mDEowNSDKibTL0U,2446
|
|
73
|
+
tinybird-0.0.1.dev21.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
74
|
+
tinybird-0.0.1.dev21.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
75
|
+
tinybird-0.0.1.dev21.dist-info/top_level.txt,sha256=pgw6AzERHBcW3YTi2PW4arjxLkulk2msOz_SomfOEuc,45
|
|
76
|
+
tinybird-0.0.1.dev21.dist-info/RECORD,,
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
tinybird/__cli__.py,sha256=pgYsVLcqL16wtSn6KtKweNZYoYJdEksTgSvQAW7hH64,250
|
|
2
|
-
tinybird/client.py,sha256=iPtpEhKB3alvo0o4kKMePrt1N7VbwtrKvH10OSWFAaA,51498
|
|
3
|
-
tinybird/config.py,sha256=Z-BX9FrjgsLw1YwcCdF0IztLB97Zpc70VVPplO_pDSY,6089
|
|
4
|
-
tinybird/connectors.py,sha256=lkpVSUmSuViEZBa4QjTK7YmPHUop0a5UFoTrSmlVq6k,15244
|
|
5
|
-
tinybird/context.py,sha256=kutUQ0kCwparowI74_YLXx6wtTzGLRouJ6oGHVBPzBo,1291
|
|
6
|
-
tinybird/datatypes.py,sha256=IHyhZ86ib54Vnd1pbod9y2aS8DDvDKZm1HJGlThdbuQ,10460
|
|
7
|
-
tinybird/feedback_manager.py,sha256=U_VbVl3RBCPV-qc3g8vz124Mg9XeMmKk055eqiIaBqY,68338
|
|
8
|
-
tinybird/git_settings.py,sha256=XUL9ZUj59-ZVQJDYmMEq4UpnuuOuQOHGlNcX3JgQHjQ,3954
|
|
9
|
-
tinybird/prompts.py,sha256=pCqN1JAHqdA-PgxBnzjIYpCXjpko89Xu4EHl6ol0iNs,6417
|
|
10
|
-
tinybird/sql.py,sha256=gfRKjdqEygcE1WOTeQ1QV2Jal8Jzl4RSX8fftu1KSEs,45825
|
|
11
|
-
tinybird/sql_template.py,sha256=IqYRfUxDYBCoOYjqqvn--_8QXLv9FSRnJ0bInx7q1Xs,93051
|
|
12
|
-
tinybird/sql_template_fmt.py,sha256=1z-PuqSZXtzso8Z_mPqUc-NxIxUrNUcVIPezNieZk-M,10196
|
|
13
|
-
tinybird/sql_toolset.py,sha256=xS_yD5N_TZT5d4uPcXdeIYX4GQPz7-7wHywMGdfgqcM,13794
|
|
14
|
-
tinybird/syncasync.py,sha256=fAvq0qkRgqXqXMKwbY2iJNYqLT_r6mDsh1MRpGKrdRU,27763
|
|
15
|
-
tinybird/tornado_template.py,sha256=o2HguxrL1Evnt8o3IvrsI8Zm6JtRQ3zhLJKf1XyR3SQ,41965
|
|
16
|
-
tinybird/ch_utils/constants.py,sha256=aYvg2C_WxYWsnqPdZB1ZFoIr8ZY-XjUXYyHKE9Ansj0,3890
|
|
17
|
-
tinybird/ch_utils/engine.py,sha256=OXkBhlzGjZotjD0vaT-rFIbSGV4tpiHxE8qO_ip0SyQ,40454
|
|
18
|
-
tinybird/tb/__cli__.py,sha256=Rkdf_rWmJCmGhDIUL6WoCdXi5BDn2cZHjhBCqPvzpu8,251
|
|
19
|
-
tinybird/tb/cli.py,sha256=onCxcKvTV4RuokC5V3t82OXWAIwgU6pMWs8rpWOUi_o,815
|
|
20
|
-
tinybird/tb/modules/auth.py,sha256=hynZ-Temot8YBsySUWKSFzZlYadtFPxG3o6lCSu1n6E,9018
|
|
21
|
-
tinybird/tb/modules/build.py,sha256=oVHv9kbim6ZhupLtCIxfgeZOCriqfH4Oz9S5Komv_9c,9409
|
|
22
|
-
tinybird/tb/modules/build_shell.py,sha256=3ec18FWyyF5lWgrf8F2n8-3ngQccJUmN2cwB9-_S_1g,14083
|
|
23
|
-
tinybird/tb/modules/cicd.py,sha256=Xa3M7Egq4eDS6QIhrx8C8Ixf-R7oiZpO-5ZBPqYAKtI,5344
|
|
24
|
-
tinybird/tb/modules/cli.py,sha256=hN5_DijZZ-E2OtLe0tgnu4a_5KCzY9EeOjE-bEJefos,53169
|
|
25
|
-
tinybird/tb/modules/common.py,sha256=XfpzFVT9xJZ_HH7EZRLAjRMkTtz5rP7Njld5-EwMqiA,72400
|
|
26
|
-
tinybird/tb/modules/config.py,sha256=ri4Gwyzqol6-NofTjHnWquuDzJOjHbkaAnboO8JNENY,11499
|
|
27
|
-
tinybird/tb/modules/connection.py,sha256=ZSqBGoRiJedjHKEyB_fr1ybucOHtaad8d7uqGa2Q92M,28668
|
|
28
|
-
tinybird/tb/modules/create.py,sha256=jSVh8ysT5OoQ0EUg3ETU3VtKZayqFWBjPjcQSdYa7Sc,9882
|
|
29
|
-
tinybird/tb/modules/datasource.py,sha256=rX7RnrXl4xxPwGxkj1DgLr521wjNXEixAeAyxMrkJJk,35472
|
|
30
|
-
tinybird/tb/modules/exceptions.py,sha256=4A2sSjCEqKUMqpP3WI00zouCWW4uLaghXXLZBSw04mY,3363
|
|
31
|
-
tinybird/tb/modules/fmt.py,sha256=UszEQO15fdzQ49QEj7Unhu68IKwSuKPsOrKhk2p2TAg,3547
|
|
32
|
-
tinybird/tb/modules/job.py,sha256=eoBVyA24lYIPonU88Jn7FF9hBKz1kScy9_w_oWreuc4,2952
|
|
33
|
-
tinybird/tb/modules/llm.py,sha256=OcyRzQ0V392XsiGFwrrpjkCuV6AdE6cnhh6cDKPQt7U,3102
|
|
34
|
-
tinybird/tb/modules/local.py,sha256=hV2fvHPaVHVzKwVoVDFAIbJZslOX1_COx96DZrR-dW8,5151
|
|
35
|
-
tinybird/tb/modules/local_common.py,sha256=PsQu0Sg8BruusPzlzvs6dd2WlomvOcks-B37A798-Ls,2133
|
|
36
|
-
tinybird/tb/modules/login.py,sha256=ydyn64fbz3BOlSf5SZuIFvgsCpxQAQir8nJQSdMeq94,6011
|
|
37
|
-
tinybird/tb/modules/mock.py,sha256=cpEmfSv5Osy_YF5eaFcAlpAYi0oVlX1NQH4mnAKvlUI,2884
|
|
38
|
-
tinybird/tb/modules/pipe.py,sha256=P_W5HW1-UEidWlw0pty-n_qYvCAyMlNorBmWzmCP7cU,30906
|
|
39
|
-
tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
40
|
-
tinybird/tb/modules/table.py,sha256=hG-PRDVuFp2uph41WpoLRV1yjp3RI2fi_iGGiI0rdxU,7695
|
|
41
|
-
tinybird/tb/modules/tag.py,sha256=1qQWyk1p3Btv3LzM8VbJG-k7x2-pFuAlYCg3QL6QewI,3480
|
|
42
|
-
tinybird/tb/modules/telemetry.py,sha256=iEGnMuCuNhvF6ln__j6X9MSTwL_0Hm-GgFHHHvhfknk,10466
|
|
43
|
-
tinybird/tb/modules/test.py,sha256=Br0gXS9FrpFEnA6mnSm5fRbYnaw10AL_Z0gbaDfvDoM,8857
|
|
44
|
-
tinybird/tb/modules/token.py,sha256=r0oeG1RpOOzHtqbUaHBiOmhE55HfNIvReAAWyKl9fJg,12695
|
|
45
|
-
tinybird/tb/modules/workspace.py,sha256=FVlh-kbiZp5Gvp6dGFxi0UD8ail77rMamXLhqdVwrZ0,10916
|
|
46
|
-
tinybird/tb/modules/workspace_members.py,sha256=08W0onEYkKLEC5TkAI07cxN9XSquEm7HnL7OkHAVDjo,8715
|
|
47
|
-
tinybird/tb/modules/datafile/build.py,sha256=rFdK_GerPDgPfyPfZ4EZ0-cQqWfHd6htS0ls-Yy7khk,92491
|
|
48
|
-
tinybird/tb/modules/datafile/build_common.py,sha256=74547h5ja4C66DAwDMabj75FA_BUTJxTJv-24tSFmrs,4551
|
|
49
|
-
tinybird/tb/modules/datafile/build_datasource.py,sha256=fquzEGwk9NL_0K5YYG86Xtvgn4J5YHtRUoKJxbQGO0s,17344
|
|
50
|
-
tinybird/tb/modules/datafile/build_pipe.py,sha256=V5u21NEpSCWNVl46Cdn_I_bOojxpgSrg1MnScPDqx4U,27648
|
|
51
|
-
tinybird/tb/modules/datafile/common.py,sha256=3CwspnffLUOlbfHMzjEvNebX--5sOC8DUKOC__3_fTA,75702
|
|
52
|
-
tinybird/tb/modules/datafile/diff.py,sha256=-iaP7GvAzZtZSa8jPgVpOFlTRutxgxRBLBcGL1_RFr4,6743
|
|
53
|
-
tinybird/tb/modules/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
|
|
54
|
-
tinybird/tb/modules/datafile/fixture.py,sha256=YHlL4tojmPwm343Y8KO6r7d5Bhsk7U3lKP-oLMeBMsY,1771
|
|
55
|
-
tinybird/tb/modules/datafile/format_common.py,sha256=zNWDXvwSKC9_T5e9R92LLj9ekDflVWwsllhGQilZsnY,2184
|
|
56
|
-
tinybird/tb/modules/datafile/format_datasource.py,sha256=tsnCjONISvhFuucKNbIHkT__UmlUbcswx5mwI9hiDQc,6216
|
|
57
|
-
tinybird/tb/modules/datafile/format_pipe.py,sha256=R5tnlEccLn3KX6ehtC_H2sGQNrthuJUiVSN9z_-KGCY,7474
|
|
58
|
-
tinybird/tb/modules/datafile/parse_datasource.py,sha256=mAGN72mviRS0rtpAD0kODhlu-N8j1fX2kp5D1GUzP6U,1464
|
|
59
|
-
tinybird/tb/modules/datafile/parse_pipe.py,sha256=9_j-wB4gsWtrXY8Gypt4EkOH6BepJpZkjFdZfbW-H50,2914
|
|
60
|
-
tinybird/tb/modules/datafile/pipe_checker.py,sha256=cp80Bru41GlyMRvyERpdJNXns2MjmtIAWFnBLF4cPXs,24667
|
|
61
|
-
tinybird/tb/modules/datafile/pull.py,sha256=wBXBAZIruIyCRQZvfYxMc7h1q35NlKF-hFIF-bUm4iY,5956
|
|
62
|
-
tinybird/tb/modules/tinyunit/tinyunit.py,sha256=IkjRCvb8HnNEE84rtl0I1b9gQVpE_zCE8MvFFet51sg,11716
|
|
63
|
-
tinybird/tb/modules/tinyunit/tinyunit_lib.py,sha256=hGh1ZaXC1af7rKnX7222urkj0QJMhMWclqMy59dOqwE,1922
|
|
64
|
-
tinybird/tb_cli_modules/cicd.py,sha256=0lMkb6CVOFZl5HOwgY8mK4T4mgI7O8335UngLXtCc-c,13851
|
|
65
|
-
tinybird/tb_cli_modules/common.py,sha256=JJwkLUcTbTonf1NWe4tUeenQGMr82d2152hnSs6k6Zc,78706
|
|
66
|
-
tinybird/tb_cli_modules/config.py,sha256=6NTgIdwf0X132A1j6G_YrdPep87ymZ9b5pABabKLzh4,11484
|
|
67
|
-
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
68
|
-
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
69
|
-
tinybird/tb_cli_modules/telemetry.py,sha256=iEGnMuCuNhvF6ln__j6X9MSTwL_0Hm-GgFHHHvhfknk,10466
|
|
70
|
-
tinybird-0.0.1.dev19.dist-info/METADATA,sha256=AxNU0bAKXE2-n882WlwLmg8drAgVN4uLrnhCqGHhqxY,2446
|
|
71
|
-
tinybird-0.0.1.dev19.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
72
|
-
tinybird-0.0.1.dev19.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
73
|
-
tinybird-0.0.1.dev19.dist-info/top_level.txt,sha256=pgw6AzERHBcW3YTi2PW4arjxLkulk2msOz_SomfOEuc,45
|
|
74
|
-
tinybird-0.0.1.dev19.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|