tinybird 0.0.1.dev10__py3-none-any.whl → 0.0.1.dev12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tinybird might be problematic. Click here for more details.
- tinybird/tb/modules/build.py +3 -12
- tinybird/tb/modules/local.py +8 -0
- tinybird/tb/modules/mock.py +11 -1
- {tinybird-0.0.1.dev10.dist-info → tinybird-0.0.1.dev12.dist-info}/METADATA +1 -1
- {tinybird-0.0.1.dev10.dist-info → tinybird-0.0.1.dev12.dist-info}/RECORD +8 -8
- {tinybird-0.0.1.dev10.dist-info → tinybird-0.0.1.dev12.dist-info}/WHEEL +0 -0
- {tinybird-0.0.1.dev10.dist-info → tinybird-0.0.1.dev12.dist-info}/entry_points.txt +0 -0
- {tinybird-0.0.1.dev10.dist-info → tinybird-0.0.1.dev12.dist-info}/top_level.txt +0 -0
tinybird/tb/modules/build.py
CHANGED
|
@@ -80,18 +80,12 @@ class FileChangeHandler(FileSystemEventHandler):
|
|
|
80
80
|
except Exception as e:
|
|
81
81
|
click.echo(FeedbackManager.error_exception(error=e))
|
|
82
82
|
|
|
83
|
-
def on_created(self, event: Any) -> None:
|
|
84
|
-
click.echo(FeedbackManager.highlight(message=f"\n\n⟲ Changes detected in {event.src_path}\n"))
|
|
85
|
-
try:
|
|
86
|
-
self.process([event.src_path])
|
|
87
|
-
except Exception as e:
|
|
88
|
-
click.echo(FeedbackManager.error_exception(error=e))
|
|
89
|
-
|
|
90
83
|
|
|
91
84
|
def watch_files(
|
|
92
85
|
filenames: List[str],
|
|
93
86
|
process: Union[Callable[[List[str]], None], Callable[[List[str]], Awaitable[None]]],
|
|
94
87
|
shell: BuildShell,
|
|
88
|
+
folder: str,
|
|
95
89
|
) -> None:
|
|
96
90
|
# Handle both sync and async process functions
|
|
97
91
|
async def process_wrapper(files: List[str]) -> None:
|
|
@@ -112,10 +106,7 @@ def watch_files(
|
|
|
112
106
|
event_handler = FileChangeHandler(filenames, lambda f: asyncio.run(process_wrapper(f)))
|
|
113
107
|
observer = Observer()
|
|
114
108
|
|
|
115
|
-
|
|
116
|
-
for filename in filenames:
|
|
117
|
-
path = filename if os.path.isdir(filename) else os.path.dirname(filename)
|
|
118
|
-
observer.schedule(event_handler, path=path, recursive=True)
|
|
109
|
+
observer.schedule(event_handler, path=folder, recursive=True)
|
|
119
110
|
|
|
120
111
|
observer.start()
|
|
121
112
|
|
|
@@ -237,7 +228,7 @@ async def build(
|
|
|
237
228
|
if watch:
|
|
238
229
|
shell = BuildShell(folder=folder)
|
|
239
230
|
click.echo(FeedbackManager.highlight(message="◎ Watching for changes..."))
|
|
240
|
-
watcher_thread = threading.Thread(target=watch_files, args=(filenames, process, shell), daemon=True)
|
|
231
|
+
watcher_thread = threading.Thread(target=watch_files, args=(filenames, process, shell, folder), daemon=True)
|
|
241
232
|
watcher_thread.start()
|
|
242
233
|
shell.cmdloop()
|
|
243
234
|
|
tinybird/tb/modules/local.py
CHANGED
|
@@ -147,6 +147,14 @@ async def get_tinybird_local_client(path: Optional[str] = None):
|
|
|
147
147
|
return config.get_client(host=TB_LOCAL_HOST, token=token)
|
|
148
148
|
|
|
149
149
|
|
|
150
|
+
@cli.command()
|
|
151
|
+
def upgrade():
|
|
152
|
+
"""Upgrade Tinybird CLI to the latest version"""
|
|
153
|
+
click.echo(FeedbackManager.info(message="Upgrading Tinybird CLI..."))
|
|
154
|
+
os.system(f"{os.getenv('HOME')}/.local/bin/uv tool upgrade tinybird")
|
|
155
|
+
click.echo(FeedbackManager.success(message="Tinybird CLI upgraded"))
|
|
156
|
+
|
|
157
|
+
|
|
150
158
|
@cli.group()
|
|
151
159
|
@click.pass_context
|
|
152
160
|
def local(ctx):
|
tinybird/tb/modules/mock.py
CHANGED
|
@@ -33,9 +33,19 @@ async def mock(datasource: str, rows: int, context: str, folder: str) -> None:
|
|
|
33
33
|
datasource_name = datasource_path.stem
|
|
34
34
|
else:
|
|
35
35
|
datasource_path = Path("datasources", f"{datasource}.datasource")
|
|
36
|
-
|
|
37
36
|
datasource_path = Path(folder) / datasource_path
|
|
38
37
|
|
|
38
|
+
context_path = Path(folder) / "fixtures" / f"{datasource_name}.prompt"
|
|
39
|
+
if not context:
|
|
40
|
+
# load the context from the fixture.prompt file if it exists
|
|
41
|
+
if context_path.exists():
|
|
42
|
+
click.echo(FeedbackManager.gray(message=f"Using context for {context_path}..."))
|
|
43
|
+
context = context_path.read_text()
|
|
44
|
+
else:
|
|
45
|
+
click.echo(FeedbackManager.gray(message=f"Overriding context for {datasource_name}..."))
|
|
46
|
+
context_path.write_text(context)
|
|
47
|
+
|
|
48
|
+
|
|
39
49
|
click.echo(FeedbackManager.gray(message=f"Creating fixture for {datasource_name}..."))
|
|
40
50
|
datasource_content = datasource_path.read_text()
|
|
41
51
|
llm_config = CLIConfig.get_llm_config()
|
|
@@ -18,7 +18,7 @@ tinybird/ch_utils/engine.py,sha256=OXkBhlzGjZotjD0vaT-rFIbSGV4tpiHxE8qO_ip0SyQ,4
|
|
|
18
18
|
tinybird/tb/cli.py,sha256=6Lu3wsCNepAxjJCWy4c6RhVPArBtm8TlUcSxX--TsBo,783
|
|
19
19
|
tinybird/tb/modules/auth.py,sha256=hynZ-Temot8YBsySUWKSFzZlYadtFPxG3o6lCSu1n6E,9018
|
|
20
20
|
tinybird/tb/modules/branch.py,sha256=R1tTUBGyI0p_dt2IAWbuyNOvemhjCIPwYxEmOxL3zOg,38468
|
|
21
|
-
tinybird/tb/modules/build.py,sha256=
|
|
21
|
+
tinybird/tb/modules/build.py,sha256=_kiloHo4cGdyQyp7TgCmXGHtmPP0cCL1gq1m-YcwNHQ,11181
|
|
22
22
|
tinybird/tb/modules/cicd.py,sha256=KCFfywFfvGRh24GZwqrhICiTK_arHelPs_X4EB-pXIw,7331
|
|
23
23
|
tinybird/tb/modules/cli.py,sha256=c-XNRu-idb2Hz43IT9ejd-QjsZy-xPQ3rnrdVIz0wxM,56568
|
|
24
24
|
tinybird/tb/modules/common.py,sha256=Vubc2AIR8BfEupnT5e1Y8OYGEyvNoIcjo8th-SaUflw,80111
|
|
@@ -30,8 +30,8 @@ tinybird/tb/modules/exceptions.py,sha256=4A2sSjCEqKUMqpP3WI00zouCWW4uLaghXXLZBSw
|
|
|
30
30
|
tinybird/tb/modules/fmt.py,sha256=UszEQO15fdzQ49QEj7Unhu68IKwSuKPsOrKhk2p2TAg,3547
|
|
31
31
|
tinybird/tb/modules/job.py,sha256=eoBVyA24lYIPonU88Jn7FF9hBKz1kScy9_w_oWreuc4,2952
|
|
32
32
|
tinybird/tb/modules/llm.py,sha256=TvJJ9BlKISAb1SVI-pnHp_PcHcxGfTyjxOE_qAz90Ck,2441
|
|
33
|
-
tinybird/tb/modules/local.py,sha256=
|
|
34
|
-
tinybird/tb/modules/mock.py,sha256=
|
|
33
|
+
tinybird/tb/modules/local.py,sha256=sImiZwUMsvJRGBVZovOGBqxXo0SBWYwpZ7b8zVG_QNc,6943
|
|
34
|
+
tinybird/tb/modules/mock.py,sha256=RohmEhNfudVryn2pJrI4fASE74inovNxzN0ew85Y830,2747
|
|
35
35
|
tinybird/tb/modules/pipe.py,sha256=9wnfKbp2FkmLiJgVk3qbra76ktwsUTXghu6j9cCEahQ,31058
|
|
36
36
|
tinybird/tb/modules/prompts.py,sha256=g0cBW2ePzuftib02wV82VIcAZd59buAAusnirAbzqVE,8662
|
|
37
37
|
tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
@@ -65,8 +65,8 @@ tinybird/tb_cli_modules/config.py,sha256=6NTgIdwf0X132A1j6G_YrdPep87ymZ9b5pABabK
|
|
|
65
65
|
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
66
66
|
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
67
67
|
tinybird/tb_cli_modules/telemetry.py,sha256=iEGnMuCuNhvF6ln__j6X9MSTwL_0Hm-GgFHHHvhfknk,10466
|
|
68
|
-
tinybird-0.0.1.
|
|
69
|
-
tinybird-0.0.1.
|
|
70
|
-
tinybird-0.0.1.
|
|
71
|
-
tinybird-0.0.1.
|
|
72
|
-
tinybird-0.0.1.
|
|
68
|
+
tinybird-0.0.1.dev12.dist-info/METADATA,sha256=ZwbPVXa3y_heMMrs0TuUbc94QtmsymDy_--2yL6kyS0,2405
|
|
69
|
+
tinybird-0.0.1.dev12.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
70
|
+
tinybird-0.0.1.dev12.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
71
|
+
tinybird-0.0.1.dev12.dist-info/top_level.txt,sha256=pgw6AzERHBcW3YTi2PW4arjxLkulk2msOz_SomfOEuc,45
|
|
72
|
+
tinybird-0.0.1.dev12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|