pixeltable 0.4.12__py3-none-any.whl → 0.4.14__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 pixeltable might be problematic. Click here for more details.
- pixeltable/__init__.py +11 -1
- pixeltable/catalog/__init__.py +2 -1
- pixeltable/catalog/catalog.py +179 -63
- pixeltable/catalog/column.py +24 -20
- pixeltable/catalog/table.py +96 -124
- pixeltable/catalog/table_metadata.py +96 -0
- pixeltable/catalog/table_version.py +15 -6
- pixeltable/catalog/view.py +22 -22
- pixeltable/config.py +2 -0
- pixeltable/dataframe.py +3 -2
- pixeltable/env.py +43 -21
- pixeltable/exec/__init__.py +1 -0
- pixeltable/exec/aggregation_node.py +0 -1
- pixeltable/exec/cache_prefetch_node.py +74 -98
- pixeltable/exec/data_row_batch.py +2 -18
- pixeltable/exec/in_memory_data_node.py +1 -1
- pixeltable/exec/object_store_save_node.py +299 -0
- pixeltable/exec/sql_node.py +28 -33
- pixeltable/exprs/data_row.py +31 -25
- pixeltable/exprs/json_path.py +6 -5
- pixeltable/exprs/row_builder.py +6 -12
- pixeltable/functions/gemini.py +1 -1
- pixeltable/functions/openai.py +1 -1
- pixeltable/functions/video.py +5 -6
- pixeltable/globals.py +6 -7
- pixeltable/index/embedding_index.py +5 -8
- pixeltable/io/__init__.py +2 -1
- pixeltable/io/fiftyone.py +1 -1
- pixeltable/io/label_studio.py +4 -5
- pixeltable/io/lancedb.py +3 -0
- pixeltable/io/parquet.py +9 -89
- pixeltable/io/table_data_conduit.py +2 -2
- pixeltable/iterators/audio.py +1 -1
- pixeltable/iterators/document.py +10 -12
- pixeltable/iterators/video.py +1 -1
- pixeltable/metadata/schema.py +7 -0
- pixeltable/plan.py +26 -1
- pixeltable/share/packager.py +8 -2
- pixeltable/share/publish.py +3 -9
- pixeltable/type_system.py +1 -3
- pixeltable/utils/arrow.py +97 -2
- pixeltable/utils/dbms.py +31 -5
- pixeltable/utils/gcs_store.py +283 -0
- pixeltable/utils/lancedb.py +88 -0
- pixeltable/utils/local_store.py +316 -0
- pixeltable/utils/object_stores.py +497 -0
- pixeltable/utils/pytorch.py +5 -6
- pixeltable/utils/s3_store.py +354 -0
- {pixeltable-0.4.12.dist-info → pixeltable-0.4.14.dist-info}/METADATA +162 -127
- {pixeltable-0.4.12.dist-info → pixeltable-0.4.14.dist-info}/RECORD +53 -47
- pixeltable/utils/media_store.py +0 -248
- pixeltable/utils/s3.py +0 -17
- {pixeltable-0.4.12.dist-info → pixeltable-0.4.14.dist-info}/WHEEL +0 -0
- {pixeltable-0.4.12.dist-info → pixeltable-0.4.14.dist-info}/entry_points.txt +0 -0
- {pixeltable-0.4.12.dist-info → pixeltable-0.4.14.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pixeltable
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.14
|
|
4
4
|
Summary: AI Data Infrastructure: Declarative, Multimodal, and Incremental
|
|
5
5
|
Project-URL: homepage, https://pixeltable.com/
|
|
6
6
|
Project-URL: repository, https://github.com/pixeltable/pixeltable
|
|
@@ -55,44 +55,41 @@ Requires-Dist: toml>=0.10
|
|
|
55
55
|
Requires-Dist: tqdm>=4.64
|
|
56
56
|
Description-Content-Type: text/markdown
|
|
57
57
|
|
|
58
|
-
<
|
|
59
|
-
<
|
|
60
|
-
|
|
61
|
-
<
|
|
58
|
+
<picture class="github-only">
|
|
59
|
+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/e9bf82b2-cace-4bd8-9523-b65495eb8131">
|
|
60
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/c5ab123e-806c-49bf-93e7-151353719b16">
|
|
61
|
+
<img alt="Pixeltable Logo" src="https://github.com/user-attachments/assets/e9bf82b2-cace-4bd8-9523-b65495eb8131" width="40%">
|
|
62
|
+
</picture>
|
|
62
63
|
|
|
63
|
-
<
|
|
64
|
+
<div>
|
|
65
|
+
<br>
|
|
66
|
+
</div>
|
|
67
|
+
|
|
68
|
+
The only open source Python library providing declarative data infrastructure for building multimodal AI applications, enabling incremental storage, transformation, indexing, retrieval, and orchestration of data.
|
|
64
69
|
|
|
65
70
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
66
|
-

|
|
67
|
-

|
|
68
|
-
<br>
|
|
69
71
|
[](https://github.com/pixeltable/pixeltable/actions/workflows/pytest.yml)
|
|
70
72
|
[](https://github.com/pixeltable/pixeltable/actions/workflows/nightly.yml)
|
|
71
73
|
[](https://github.com/pixeltable/pixeltable/actions/workflows/stress-tests.yml)
|
|
72
74
|
[](https://pypi.org/project/pixeltable/)
|
|
73
75
|
[](https://discord.gg/QPyqFYx2UN)
|
|
74
76
|
|
|
75
|
-
[**Installation**](https://docs.pixeltable.com/docs/overview/installation) |
|
|
76
77
|
[**Quick Start**](https://docs.pixeltable.com/docs/overview/quick-start) |
|
|
77
78
|
[**Documentation**](https://docs.pixeltable.com/) |
|
|
78
79
|
[**API Reference**](https://pixeltable.github.io/pixeltable/) |
|
|
79
|
-
[**
|
|
80
|
+
[**Sample Apps**](https://github.com/pixeltable/pixeltable/tree/main/docs/sample-apps) |
|
|
80
81
|
[**Discord Community**](https://discord.gg/QPyqFYx2UN)
|
|
81
82
|
|
|
82
|
-
</div>
|
|
83
|
-
|
|
84
83
|
---
|
|
85
84
|
|
|
86
|
-
##
|
|
85
|
+
## Installation
|
|
87
86
|
|
|
88
87
|
```python
|
|
89
88
|
pip install pixeltable
|
|
90
89
|
```
|
|
90
|
+
Pixeltable replaces the complex multi-system architecture typically needed for AI applications (databases, file storage, vector DBs, APIs, orchestration) with a single declarative table interface that natively handles multimodal data like images, videos, and documents.
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
It stores metadata and computed results persistently, typically in a `.pixeltable` directory in your workspace.
|
|
94
|
-
|
|
95
|
-
## Pixeltable Demo
|
|
92
|
+
## Demo
|
|
96
93
|
|
|
97
94
|
https://github.com/user-attachments/assets/b50fd6df-5169-4881-9dbe-1b6e5d06cede
|
|
98
95
|
|
|
@@ -152,7 +149,7 @@ results = t.select(
|
|
|
152
149
|
).collect()
|
|
153
150
|
```
|
|
154
151
|
|
|
155
|
-
##
|
|
152
|
+
## What Happened?
|
|
156
153
|
|
|
157
154
|
* **Data Ingestion & Storage:** References [files](https://docs.pixeltable.com/docs/datastore/bringing-data)
|
|
158
155
|
(images, videos, audio, docs) in place, handles structured data.
|
|
@@ -174,7 +171,7 @@ as in the `insert` statement above, Pixeltable caches them locally before proces
|
|
|
174
171
|
[Working with External Files](https://github.com/pixeltable/pixeltable/blob/main/docs/notebooks/feature-guides/working-with-external-files.ipynb)
|
|
175
172
|
notebook for more details.
|
|
176
173
|
|
|
177
|
-
##
|
|
174
|
+
## Where Did My Data Go?
|
|
178
175
|
|
|
179
176
|
Pixeltable workloads generate various outputs, including both structured outputs (such as bounding boxes for detected
|
|
180
177
|
objects) and/or unstructured outputs (such as generated images or video). By default, everything resides in your
|
|
@@ -186,125 +183,163 @@ a unified table interface over both structured and unstructured data.
|
|
|
186
183
|
In general, the user is not expected to interact directly with the data in `~/.pixeltable`; the data store is fully
|
|
187
184
|
managed by Pixeltable and is intended to be accessed through the Pixeltable Python SDK.
|
|
188
185
|
|
|
189
|
-
##
|
|
186
|
+
## Key Principles
|
|
190
187
|
|
|
191
|
-
|
|
192
|
-
|
|
188
|
+
**[Unified Multimodal Interface:](https://docs.pixeltable.com/docs/datastore/tables-and-operations)** `pxt.Image`,
|
|
189
|
+
`pxt.Video`, `pxt.Audio`, `pxt.Document`, etc. – manage diverse data consistently.
|
|
193
190
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
191
|
+
```python
|
|
192
|
+
t = pxt.create_table(
|
|
193
|
+
'media',
|
|
194
|
+
{
|
|
195
|
+
'img': pxt.Image,
|
|
196
|
+
'video': pxt.Video
|
|
197
|
+
}
|
|
198
|
+
)
|
|
199
|
+
```
|
|
203
200
|
|
|
204
|
-
|
|
205
|
-
|
|
201
|
+
**[Declarative Computed Columns:](https://docs.pixeltable.com/docs/datastore/computed-columns)** Define processing
|
|
202
|
+
steps once; they run automatically on new/updated data.
|
|
206
203
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
204
|
+
```python
|
|
205
|
+
t.add_computed_column(
|
|
206
|
+
classification=huggingface.vit_for_image_classification(
|
|
207
|
+
t.image
|
|
208
|
+
)
|
|
209
|
+
)
|
|
210
|
+
```
|
|
214
211
|
|
|
215
|
-
|
|
216
|
-
|
|
212
|
+
**[Built-in Vector Search:](https://docs.pixeltable.com/docs/datastore/embedding-index)** Add embedding indexes and
|
|
213
|
+
perform similarity searches directly on tables/views.
|
|
217
214
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
215
|
+
```python
|
|
216
|
+
t.add_embedding_index(
|
|
217
|
+
'img',
|
|
218
|
+
embedding=clip.using(
|
|
219
|
+
model_id='openai/clip-vit-base-patch32'
|
|
220
|
+
)
|
|
221
|
+
)
|
|
225
222
|
|
|
226
|
-
|
|
227
|
-
|
|
223
|
+
sim = t.img.similarity("cat playing with yarn")
|
|
224
|
+
```
|
|
228
225
|
|
|
229
|
-
|
|
230
|
-
|
|
226
|
+
**[Incremental View Maintenance:](https://docs.pixeltable.com/docs/datastore/views)** Create virtual tables using iterators
|
|
227
|
+
for efficient processing without data duplication.
|
|
231
228
|
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
229
|
+
```python
|
|
230
|
+
# Document chunking with overlap & metadata and many more options to build your own iterator
|
|
231
|
+
chunks = pxt.create_view('chunks', docs,
|
|
232
|
+
iterator=DocumentSplitter.create(
|
|
233
|
+
document=docs.doc,
|
|
234
|
+
separators='sentence,token_limit',
|
|
235
|
+
overlap=50, limit=500
|
|
236
|
+
))
|
|
237
|
+
|
|
238
|
+
# Video frame extraction
|
|
239
|
+
frames = pxt.create_view('frames', videos,
|
|
240
|
+
iterator=FrameIterator.create(video=videos.video, fps=0.5))
|
|
241
|
+
```
|
|
242
242
|
|
|
243
|
-
|
|
244
|
-
|
|
243
|
+
**[Seamless AI Integration:](https://docs.pixeltable.com/docs/integrations/frameworks)** Built-in functions for
|
|
244
|
+
OpenAI, Anthropic, Hugging Face, CLIP, YOLOX, and more.
|
|
245
245
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
246
|
+
```python
|
|
247
|
+
# LLM integration (OpenAI, Anthropic, etc.)
|
|
248
|
+
t.add_computed_column(
|
|
249
|
+
response=openai.chat_completions(
|
|
250
|
+
messages=[{"role": "user", "content": t.prompt}], model='gpt-4o-mini'
|
|
251
|
+
)
|
|
252
|
+
)
|
|
253
253
|
|
|
254
|
-
|
|
255
|
-
|
|
254
|
+
# Computer vision (YOLOX object detection)
|
|
255
|
+
t.add_computed_column(
|
|
256
|
+
detections=yolox(t.image, model_id='yolox_s', threshold=0.5)
|
|
257
|
+
)
|
|
256
258
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
259
|
+
# Embedding models (Hugging Face, CLIP)
|
|
260
|
+
t.add_computed_column(
|
|
261
|
+
embeddings=huggingface.sentence_transformer(
|
|
262
|
+
t.text, model_id='all-MiniLM-L6-v2'
|
|
263
|
+
)
|
|
264
|
+
)
|
|
265
|
+
```
|
|
262
266
|
|
|
263
|
-
|
|
264
|
-
|
|
267
|
+
**[Bring Your Own Code:](https://docs.pixeltable.com/docs/datastore/custom-functions)** Extend Pixeltable with UDFs, batch processing, and custom aggregators.
|
|
268
|
+
|
|
269
|
+
```python
|
|
270
|
+
@pxt.udf
|
|
271
|
+
def format_prompt(context: list, question: str) -> str:
|
|
272
|
+
return f"Context: {context}\nQuestion: {question}"
|
|
273
|
+
```
|
|
265
274
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
tools = pxt.tools(get_weather_udf, search_context_query)
|
|
275
|
+
**[Agentic Workflows / Tool Calling:](https://docs.pixeltable.com/docs/examples/chat/tools)** Register `@pxt.udf`,
|
|
276
|
+
`@pxt.query` functions, or **MCP tools** as tools.
|
|
269
277
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
278
|
+
```python
|
|
279
|
+
# Example tools: UDFs, Query functions, and MCP tools
|
|
280
|
+
mcp_tools = pxt.mcp_udfs('http://localhost:8000/mcp') # Load from MCP server
|
|
281
|
+
tools = pxt.tools(get_weather_udf, search_context_query, *mcp_tools)
|
|
282
|
+
|
|
283
|
+
# LLM decides which tool to call; Pixeltable executes it
|
|
284
|
+
t.add_computed_column(
|
|
285
|
+
tool_output=invoke_tools(tools, t.llm_tool_choice)
|
|
286
|
+
)
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
**[Data Persistence:](https://docs.pixeltable.com/docs/datastore/tables-and-operations#data-operations)** All data,
|
|
290
|
+
metadata, and computed results are automatically stored and versioned.
|
|
291
|
+
|
|
292
|
+
```python
|
|
293
|
+
t = pxt.get_table('my_table') # Get a handle to an existing table
|
|
294
|
+
t.select(t.account, t.balance).collect() # Query its contents
|
|
295
|
+
t.revert() # Undo the last modification to the table and restore its previous state
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
**[Time Travel:](https://docs.pixeltable.com/docs/datastore/tables-and-operations#data-operations)** By default,
|
|
299
|
+
Pixeltable preserves the full change history of each table, and any prior version can be selected and queried.
|
|
300
|
+
|
|
301
|
+
```python
|
|
302
|
+
t.history() # Display a human-readable list of all prior versions of the table
|
|
303
|
+
old_version = pxt.get_table('my_table:472') # Get a handle to a specific table version
|
|
304
|
+
old_version.select(t.account, t.balance).collect() # Query the older version
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
**[SQL-like Python Querying:](https://docs.pixeltable.com/docs/datastore/filtering-and-selecting)** Familiar syntax
|
|
308
|
+
combined with powerful AI capabilities.
|
|
309
|
+
|
|
310
|
+
```python
|
|
311
|
+
results = (
|
|
312
|
+
t.where(t.score > 0.8)
|
|
313
|
+
.order_by(t.timestamp)
|
|
314
|
+
.select(t.image, score=t.score)
|
|
315
|
+
.limit(10)
|
|
316
|
+
.collect()
|
|
317
|
+
)
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
**[I/O & Integration:](https://pixeltable.github.io/pixeltable/pixeltable/io/)** Export to multiple
|
|
321
|
+
formats and integrate with ML/AI tools ecosystem.
|
|
322
|
+
|
|
323
|
+
```python
|
|
324
|
+
# Export to analytics/ML formats
|
|
325
|
+
pxt.export_parquet(table, 'data.parquet', partition_size_bytes=100_000_000)
|
|
326
|
+
pxt.export_lancedb(table, 'vector_db')
|
|
327
|
+
|
|
328
|
+
# DataFrame conversions
|
|
329
|
+
results = table.select(table.image, table.labels).collect()
|
|
330
|
+
df = results.to_pandas() # → pandas DataFrame
|
|
331
|
+
models = results.to_pydantic(MyModel) # → Pydantic models
|
|
332
|
+
|
|
333
|
+
# Specialized ML dataset formats
|
|
334
|
+
coco_path = table.to_coco_dataset() # → COCO annotations
|
|
335
|
+
pytorch_ds = table.to_pytorch_dataset('pt') # → PyTorch DataLoader ready
|
|
336
|
+
|
|
337
|
+
# ML tool integrations
|
|
338
|
+
pxt.create_label_studio_project(table, label_config) # Annotation
|
|
339
|
+
pxt.export_images_as_fo_dataset(table, table.image) # FiftyOne
|
|
340
|
+
```
|
|
306
341
|
|
|
307
|
-
##
|
|
342
|
+
## Key Examples
|
|
308
343
|
|
|
309
344
|
*(See the [Full Quick Start](https://docs.pixeltable.com/docs/overview/quick-start) or
|
|
310
345
|
[Notebook Gallery](#-notebook-gallery) for more details)*
|
|
@@ -497,7 +532,7 @@ print("--- Final Answer ---")
|
|
|
497
532
|
print(qa.select(qa.answer).collect())
|
|
498
533
|
```
|
|
499
534
|
|
|
500
|
-
##
|
|
535
|
+
## Notebook Gallery
|
|
501
536
|
|
|
502
537
|
Explore Pixeltable's capabilities interactively:
|
|
503
538
|
|
|
@@ -514,7 +549,7 @@ Explore Pixeltable's capabilities interactively:
|
|
|
514
549
|
| Object Detection | <a target="_blank" href="https://colab.research.google.com/github/pixeltable/pixeltable/blob/release/docs/notebooks/use-cases/object-detection-in-videos.ipynb"> <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> </a> | Image/Text Search | <a target="_blank" href="https://github.com/pixeltable/pixeltable/tree/main/docs/sample-apps/text-and-image-similarity-search-nextjs-fastapi"> <img src="https://img.shields.io/badge/🖥️%20App-black.svg" alt="GitHub App"/> |
|
|
515
550
|
| Audio Transcription | <a target="_blank" href="https://colab.research.google.com/github/pixeltable/pixeltable/blob/release/docs/notebooks/use-cases/audio-transcriptions.ipynb"> <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/> | Discord Bot | <a target="_blank" href="https://github.com/pixeltable/pixeltable/blob/main/docs/sample-apps/context-aware-discord-bot"> <img src="https://img.shields.io/badge/%F0%9F%92%AC%20Bot-%235865F2.svg" alt="GitHub App"/></a> |
|
|
516
551
|
|
|
517
|
-
##
|
|
552
|
+
## Maintaining Production-Ready Multimodal AI Apps is Still Too Hard
|
|
518
553
|
|
|
519
554
|
Building robust AI applications, especially [multimodal](https://docs.pixeltable.com/docs/datastore/bringing-data) ones,
|
|
520
555
|
requires stitching together numerous tools:
|
|
@@ -528,7 +563,7 @@ requires stitching together numerous tools:
|
|
|
528
563
|
|
|
529
564
|
This complex "data plumbing" slows down development, increases costs, and makes applications brittle and hard to reproduce.
|
|
530
565
|
|
|
531
|
-
##
|
|
566
|
+
## Roadmap (2025)
|
|
532
567
|
|
|
533
568
|
### Cloud Infrastructure and Deployment
|
|
534
569
|
|
|
@@ -538,13 +573,13 @@ We're working on a hosted Pixeltable service that will:
|
|
|
538
573
|
* Provide a persistent cloud instance
|
|
539
574
|
* Turn Pixeltable workflows (Tables, Queries, UDFs) into API endpoints/[MCP Servers](https://github.com/pixeltable/pixeltable-mcp-server)
|
|
540
575
|
|
|
541
|
-
##
|
|
576
|
+
## Contributing
|
|
542
577
|
|
|
543
578
|
We love contributions! Whether it's reporting bugs, suggesting features, improving documentation, or submitting code
|
|
544
579
|
changes, please check out our [Contributing Guide](CONTRIBUTING.md) and join the
|
|
545
580
|
[Discussions](https://github.com/pixeltable/pixeltable/discussions) or our
|
|
546
581
|
[Discord Server](https://discord.gg/QPyqFYx2UN).
|
|
547
582
|
|
|
548
|
-
##
|
|
583
|
+
## License
|
|
549
584
|
|
|
550
585
|
Pixeltable is licensed under the Apache 2.0 License.
|
|
@@ -1,40 +1,42 @@
|
|
|
1
|
-
pixeltable/__init__.py,sha256=
|
|
1
|
+
pixeltable/__init__.py,sha256=PDfphK_WypPopRbBNhJ0wXiX5T9Vp4Vq9Hf8Oz_oXZA,1620
|
|
2
2
|
pixeltable/__version__.py,sha256=LnMIuAxx6nAQDMev_jnZyUdgsaiE3F8lulfXQBRl9qQ,112
|
|
3
|
-
pixeltable/config.py,sha256
|
|
4
|
-
pixeltable/dataframe.py,sha256=
|
|
5
|
-
pixeltable/env.py,sha256=
|
|
3
|
+
pixeltable/config.py,sha256=GEHneFtLb47thJZ6nTuJpzcpDG39lNzKPGFdKKfOvkQ,8540
|
|
4
|
+
pixeltable/dataframe.py,sha256=SVpGOs8gxD0gyR9g6rTG3CYRXovUgTXw5lfsHVN76G8,64300
|
|
5
|
+
pixeltable/env.py,sha256=DNIeZ25Jn76zzOgwu52GMoagIGqpEktyTnHOpJ7PSGE,45380
|
|
6
6
|
pixeltable/exceptions.py,sha256=Gm8d3TL2iiv6Pj2DLd29wp_j41qNBhxXL9iTQnL4Nk4,1116
|
|
7
|
-
pixeltable/globals.py,sha256=
|
|
8
|
-
pixeltable/plan.py,sha256=
|
|
7
|
+
pixeltable/globals.py,sha256=NbYewcMBE1YVtc_Dk3_caRk7wdNhTqqe4H7EjOl1Osk,39177
|
|
8
|
+
pixeltable/plan.py,sha256=lG_H9mkixP_Dqcy14DqDNpGBs-JXAJa9kVy6rTUsuc4,49258
|
|
9
9
|
pixeltable/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
pixeltable/store.py,sha256=CneWUmgN-EwaPYLcizlAxONC7WYwMr8SNpSFeNBBmOA,22885
|
|
11
|
-
pixeltable/type_system.py,sha256=
|
|
12
|
-
pixeltable/catalog/__init__.py,sha256=
|
|
13
|
-
pixeltable/catalog/catalog.py,sha256=
|
|
14
|
-
pixeltable/catalog/column.py,sha256=
|
|
11
|
+
pixeltable/type_system.py,sha256=4xnPN684UKC3lhzOoOqVAgR1lOPlHeEHt5Njpc6cGQQ,56131
|
|
12
|
+
pixeltable/catalog/__init__.py,sha256=GL0MLxqCBHlhKWqhC3e9B4kwTazagTOiqBHHRjyWbTg,726
|
|
13
|
+
pixeltable/catalog/catalog.py,sha256=FfMPITtao9S2LsKdH70xqAuwioMc72zqQW01NKjNeR8,100031
|
|
14
|
+
pixeltable/catalog/column.py,sha256=qEO1eyyJMaWvC_YXnyjs8f2dz_D52jxVYDN1_iVzEPE,13737
|
|
15
15
|
pixeltable/catalog/dir.py,sha256=VYTscPlKR6XhupPTXlJ8txAHxS5GSpPJ3LIleDJagVQ,2047
|
|
16
16
|
pixeltable/catalog/globals.py,sha256=uMIDsbeDzFxZbcgKDTOiT5plC1gAKgz1oxxdh1odIPw,2648
|
|
17
17
|
pixeltable/catalog/insertable_table.py,sha256=VUuJ8z7OtMqgy_LMzkn1KzeLXdR-9poTttClscQ_uaU,13899
|
|
18
18
|
pixeltable/catalog/named_function.py,sha256=vZ-j7P4HugWh9OmUzBMwyRYvO3tQn9jWyJz_1stPavU,1210
|
|
19
19
|
pixeltable/catalog/path.py,sha256=O3FfxrvyX2crijBhp_2k4-3mG3BFxwba-tlPB74QtJQ,3780
|
|
20
20
|
pixeltable/catalog/schema_object.py,sha256=rQ6-3rzqnOHyEEHi97kai2S7BO3D9AkH7rirnfbGc14,1785
|
|
21
|
-
pixeltable/catalog/table.py,sha256=
|
|
22
|
-
pixeltable/catalog/
|
|
21
|
+
pixeltable/catalog/table.py,sha256=bPG9u-UnktClTQmqQ6cB0MSzp2uxfNkpzDUngJhG2ew,81010
|
|
22
|
+
pixeltable/catalog/table_metadata.py,sha256=MVxJLS6Tz2PVOerlnoOOjjhq6LxUdDLeN0BUJf42Smw,3518
|
|
23
|
+
pixeltable/catalog/table_version.py,sha256=fyoSewWbFD1ZlH6IT-hiwqwsVScWDfT56hKrfJzcRjU,65642
|
|
23
24
|
pixeltable/catalog/table_version_handle.py,sha256=FTPRqcGY-h-POcWyZbd9b8P2D5zIw5OSUvwF_dbyCGo,3608
|
|
24
25
|
pixeltable/catalog/table_version_path.py,sha256=IaFVDH06_6ZMuBv5eLNCRTlWizpvz95jgAzqp4OVx_o,9713
|
|
25
26
|
pixeltable/catalog/tbl_ops.py,sha256=Vdcz4Nzvdw09zcQaCEaOr9Uufk2rQHgG0vBvMbQp9R8,1145
|
|
26
27
|
pixeltable/catalog/update_status.py,sha256=tF3KkDc6kvEQ7Tg3VMj-n774uKi1iLla61wLyeuwDRs,6888
|
|
27
|
-
pixeltable/catalog/view.py,sha256=
|
|
28
|
-
pixeltable/exec/__init__.py,sha256=
|
|
29
|
-
pixeltable/exec/aggregation_node.py,sha256=
|
|
30
|
-
pixeltable/exec/cache_prefetch_node.py,sha256=
|
|
28
|
+
pixeltable/catalog/view.py,sha256=Snki7QNlKThba9MSeEYCaBIwaqfiR0v_FMdIO9SJkFE,15420
|
|
29
|
+
pixeltable/exec/__init__.py,sha256=9B31dWrTJ9sdQiVd1OFtHgxa8A2YmAPBDPd6gnFjEqQ,580
|
|
30
|
+
pixeltable/exec/aggregation_node.py,sha256=54YO1tddnIGOlWUwVff9xcghrZr60UNAgBekF7OuxWA,4401
|
|
31
|
+
pixeltable/exec/cache_prefetch_node.py,sha256=Xq6Ty_0LLipDOQ91keUNVo5DZPn5Ogz39X2ThKQz5WA,10891
|
|
31
32
|
pixeltable/exec/component_iteration_node.py,sha256=7k8Wfzjc15SO0V8rc-zYTiB3DQ-euMtNQIOsve_FY7I,4797
|
|
32
|
-
pixeltable/exec/data_row_batch.py,sha256=
|
|
33
|
+
pixeltable/exec/data_row_batch.py,sha256=ryrhfXczQVrtxrTEyDTyK9ItNZ9wNt15FdM_Mpuuumw,1109
|
|
33
34
|
pixeltable/exec/exec_context.py,sha256=jKeLStfkjwCKKAooC-7a7qZUnZU5O0_JQhanhVerV9c,984
|
|
34
35
|
pixeltable/exec/exec_node.py,sha256=auRbL43-NR2G0rnjs8aK4Q2qAV3IeKDNqduVnoO-2AY,3315
|
|
35
|
-
pixeltable/exec/in_memory_data_node.py,sha256=
|
|
36
|
+
pixeltable/exec/in_memory_data_node.py,sha256=XrR3ggNILrJ77n3l4qOiKWfwUVakdRIdRsVasKP17jw,3513
|
|
37
|
+
pixeltable/exec/object_store_save_node.py,sha256=JCgx2fYqLK_Vjj1lK5vHebgS1oSqEq52w0Uxg3hJSIU,13322
|
|
36
38
|
pixeltable/exec/row_update_node.py,sha256=zU0eSyn81-vRrjAMOadRqU8luTshnPUtIbS7npyLBKY,2798
|
|
37
|
-
pixeltable/exec/sql_node.py,sha256=
|
|
39
|
+
pixeltable/exec/sql_node.py,sha256=99GW3729YzYT0vYxhACte8XQ-NxIBn1cgfRXzPbz7O4,27233
|
|
38
40
|
pixeltable/exec/expr_eval/__init__.py,sha256=sQThSEByK_DLfB-_-18RFhpARx49cSXYEkpCDyi0vQI,61
|
|
39
41
|
pixeltable/exec/expr_eval/evaluators.py,sha256=-6s_y29Wh8p35SVKkXtnA0NkzcHVw1Z8PgHGiFrMsqs,17135
|
|
40
42
|
pixeltable/exec/expr_eval/expr_eval_node.py,sha256=JIbyo61yTr4RUMyXbTFkMb88h4JWsdRjieBy9VikWTE,18919
|
|
@@ -48,7 +50,7 @@ pixeltable/exprs/column_property_ref.py,sha256=rq8VD34fZwAZuN9wIqQEwVay7LTPBKvXX
|
|
|
48
50
|
pixeltable/exprs/column_ref.py,sha256=MH83bYsef5UC4vWU71PE-lPiVd8hVw4tT6sjdCCvWNw,15473
|
|
49
51
|
pixeltable/exprs/comparison.py,sha256=lgaRx000ZaNH10A4hrtsi5XoZKE-CNEONGMi7jxJfcM,5133
|
|
50
52
|
pixeltable/exprs/compound_predicate.py,sha256=8nGsBlKaMBe1TT1VrZQ-Khe8rVgB8vukZQSspiHDB7Y,3863
|
|
51
|
-
pixeltable/exprs/data_row.py,sha256=
|
|
53
|
+
pixeltable/exprs/data_row.py,sha256=bFgaDSaS5rbk_ELWZd3IUmLdBd3addSOqKLa3I1MYCk,12344
|
|
52
54
|
pixeltable/exprs/expr.py,sha256=T558PJBeVaHCGgv_TBDUIn-fOZJtSMkz26jGUTpvCVY,35961
|
|
53
55
|
pixeltable/exprs/expr_dict.py,sha256=2ZeZ0eACx3VrRNEOjipuT5WxOIzjXQ_DSip8NTH0KRo,1584
|
|
54
56
|
pixeltable/exprs/expr_set.py,sha256=OlRTbHAAYH2fOEs1HE-8DIu7Z247xVfoT_9Y58GZoOQ,2559
|
|
@@ -58,11 +60,11 @@ pixeltable/exprs/in_predicate.py,sha256=u98JmBX9XsglKe5uCy1NUMnyi3wioBri_tue2vI9
|
|
|
58
60
|
pixeltable/exprs/inline_expr.py,sha256=XYVKKXZN9BtHN5qlvZna-mgdOlot6WcmPu5usRBYei0,7972
|
|
59
61
|
pixeltable/exprs/is_null.py,sha256=NfA_485hfT69pWyY6u8BhykDUkz5k91AH93azGu6lCg,1087
|
|
60
62
|
pixeltable/exprs/json_mapper.py,sha256=bJSB39sZgpN9KS0RReDnUhTCwg-4Y4cgXXaFNy3o3wU,7035
|
|
61
|
-
pixeltable/exprs/json_path.py,sha256=
|
|
63
|
+
pixeltable/exprs/json_path.py,sha256=nct3ZEgJuBbN_50wdnX7kNqwt5CzxnpgpKRcL2ST-IA,7126
|
|
62
64
|
pixeltable/exprs/literal.py,sha256=OCJL_pw_WKqx3bXMEwL6yNaKVAKDtGRzSZUFwucRxZI,4860
|
|
63
65
|
pixeltable/exprs/method_ref.py,sha256=NNhJTGo7luZLh8EJdFIZAax9LiiqqDCEK1AwPmHip0w,2642
|
|
64
66
|
pixeltable/exprs/object_ref.py,sha256=idYFcT27jv0BjtJT3paL37xDrZZc35_3eCJyQOIqdZU,1999
|
|
65
|
-
pixeltable/exprs/row_builder.py,sha256=
|
|
67
|
+
pixeltable/exprs/row_builder.py,sha256=WyyuMRnuEUP42IMB6K3rPm-mxwIO8U9MPpw6WWMDAIM,22875
|
|
66
68
|
pixeltable/exprs/rowid_ref.py,sha256=8MvQs3Uu01Gz__WXw9BCJv0CHrSaFDuQtU7rUr1AWEk,5008
|
|
67
69
|
pixeltable/exprs/similarity_expr.py,sha256=i0UUnMSKKGXd3Uksu6FU2NvkfG0qzfzfi-GPy-LdutM,3688
|
|
68
70
|
pixeltable/exprs/sql_element_cache.py,sha256=c7Q6vFK4xnf9vmcRYnXiAcwPBBwmw0dolftM4BwDO8c,1359
|
|
@@ -88,7 +90,7 @@ pixeltable/functions/bedrock.py,sha256=lTCFHjYunF3minBGWcjXR90yJ8resFjXr4niyKhfx
|
|
|
88
90
|
pixeltable/functions/date.py,sha256=qs1svJ9FVod3OTa5hQNKIuashb6tVhW_2EAEXYGQX74,5308
|
|
89
91
|
pixeltable/functions/deepseek.py,sha256=iw59TKKcw3VqbHMHB2ugtcTPeTVKuHp_3pfkjF6DYmE,3550
|
|
90
92
|
pixeltable/functions/fireworks.py,sha256=q7eWlYfiWbA0d9r3CB_NAe1fw3q-Z7qsw2gyGJNgWLQ,4786
|
|
91
|
-
pixeltable/functions/gemini.py,sha256=
|
|
93
|
+
pixeltable/functions/gemini.py,sha256=Stpchxr7FfxbwCp3WsPR8zfd_GFdLMCWW1G7vt0DpNk,8924
|
|
92
94
|
pixeltable/functions/globals.py,sha256=OyPJUJ4S6VWyzxstxIzk3xzYBGIEMwgk1RmSTWTZzdI,5106
|
|
93
95
|
pixeltable/functions/groq.py,sha256=61XbgY4ItASomMw9t-q8HBuv8II_ssclthjA7sL6jik,3605
|
|
94
96
|
pixeltable/functions/huggingface.py,sha256=Y-io3EungSs5ibr43vLEXs4dz_Ej20F1nglD0fyLrXA,20371
|
|
@@ -98,13 +100,13 @@ pixeltable/functions/llama_cpp.py,sha256=uop0K6oNxCnQXbdiL-_6PVsusc1xqCtwTipAyIb
|
|
|
98
100
|
pixeltable/functions/math.py,sha256=jhlD7v4eY-6KdmsFEBqb-W_vspGahOosUvFahWFzxrU,4969
|
|
99
101
|
pixeltable/functions/mistralai.py,sha256=Fk52mfWUfxVy-yCxhH6wrGS7nLLSiOOrWxbTkkiQ-O8,5542
|
|
100
102
|
pixeltable/functions/ollama.py,sha256=4-6h9Foq_7Ut7JtEHGkeg1KbuKaFywSuMrKiw0xAyCA,4231
|
|
101
|
-
pixeltable/functions/openai.py,sha256=
|
|
103
|
+
pixeltable/functions/openai.py,sha256=bxHzuJybDrjaYaLnKiI84U2NvtpIBU_iidrJq3a1Hzg,28999
|
|
102
104
|
pixeltable/functions/replicate.py,sha256=sPvRGr0j0kCDc6Vz3mPUioFflApijukvZWJJUO2bqIQ,2429
|
|
103
105
|
pixeltable/functions/string.py,sha256=LdBNOna5PUSPmM5VlJ_qhmwzyFhumW0k6Dvx2rXSZtc,25356
|
|
104
106
|
pixeltable/functions/timestamp.py,sha256=3GVCVIWdry96Qk5XXuvbJ58Tp30iY5snBibzl2CHjQc,9143
|
|
105
107
|
pixeltable/functions/together.py,sha256=A8J19BXywyWQ6a2_n05-8uIG5jquOBGqPmW3mb-NrIc,8842
|
|
106
108
|
pixeltable/functions/util.py,sha256=uQNkyBSkTVMe1wbUI2Q0nz-mM3qPVTF86yK8c9OFIcE,954
|
|
107
|
-
pixeltable/functions/video.py,sha256=
|
|
109
|
+
pixeltable/functions/video.py,sha256=SajPv4t5_CEcR9yBsikqIoQvHl8DsPIztEyZfar-Kec,26978
|
|
108
110
|
pixeltable/functions/vision.py,sha256=17h9bOm3NJyQzFMBwXDHMqnkcuCspyQJgHdBOXV1Ip8,15380
|
|
109
111
|
pixeltable/functions/whisper.py,sha256=u2QcDU7JdtgLIImCkFPkzjWEjLTJIrlSkAWqeITyIJw,3103
|
|
110
112
|
pixeltable/functions/whisperx.py,sha256=BT9gwXEf5V1lgDxynkrrH6gsuCLqjCzfMJKj5DaOtSM,7661
|
|
@@ -112,28 +114,29 @@ pixeltable/functions/yolox.py,sha256=ZdYr6WIqTCHOJoZSoXe4CbME54dYeeeOhkOi1I7VtcE
|
|
|
112
114
|
pixeltable/index/__init__.py,sha256=97aFuxiP_oz1ldn5iq8IWApkOV8XG6ZIBW5-9rkS0vM,122
|
|
113
115
|
pixeltable/index/base.py,sha256=200s7v3Zy810bRlbSAYzxxaEjVssl6r8esTHiSvWRwQ,1704
|
|
114
116
|
pixeltable/index/btree.py,sha256=8B06D67ay0DFUtEBC5q4bLjxMq7ILpKyyoLAiSaamzA,2503
|
|
115
|
-
pixeltable/index/embedding_index.py,sha256=
|
|
116
|
-
pixeltable/io/__init__.py,sha256=
|
|
117
|
+
pixeltable/index/embedding_index.py,sha256=rXAh3ZPrsUoaqNB8JSYlceDkcjs82hIkqSDwRi70Pio,11638
|
|
118
|
+
pixeltable/io/__init__.py,sha256=SO9xvWuQHfg_YyVahDmstB3lSuMoPKRarW8qgUR81jM,655
|
|
117
119
|
pixeltable/io/datarows.py,sha256=s2fDQTttGxq7cS5JwKFEJRSKn6WsXTaGdmm9VJSl_2M,6154
|
|
118
120
|
pixeltable/io/external_store.py,sha256=rOYBwTqcZZVU2toWxJ_9Iy2w2YO0DhuABrM2xGmqHSo,14787
|
|
119
|
-
pixeltable/io/fiftyone.py,sha256=
|
|
121
|
+
pixeltable/io/fiftyone.py,sha256=6KyOqJbRXJzF96Ob4B3yZzyU0yveLbvuf6thjfrZZwE,6891
|
|
120
122
|
pixeltable/io/globals.py,sha256=B9ubI9Z0m2wGPZXWmZm10vlaP0UCuUsVyrMWvyudZSc,11360
|
|
121
123
|
pixeltable/io/hf_datasets.py,sha256=5WfWfXoQppG1Bx_pS5n44KO1Vo_mEb_S82PLB8cLfAU,5606
|
|
122
|
-
pixeltable/io/label_studio.py,sha256=
|
|
124
|
+
pixeltable/io/label_studio.py,sha256=PsKZbcko7OzxkNiay2rgpt8VoTK705k4M8AJ7AjCaew,31438
|
|
125
|
+
pixeltable/io/lancedb.py,sha256=kNcYXptieMlJ6yxEIZHVFklEMOEB2mrSyp7XZmOw4qs,82
|
|
123
126
|
pixeltable/io/pandas.py,sha256=xQmkwbqE9_fjbbPUgeG5yNICrbVVK73UHxDL-cgrQw0,9007
|
|
124
|
-
pixeltable/io/parquet.py,sha256=
|
|
125
|
-
pixeltable/io/table_data_conduit.py,sha256
|
|
127
|
+
pixeltable/io/parquet.py,sha256=qVvg9nixJnK9gXYxZocD8HE13SznyLrgW9IsehtT4j4,4101
|
|
128
|
+
pixeltable/io/table_data_conduit.py,sha256=8jwQ3IOoOBS-8j2TEfgiqsFUD85kEP5IjoC0dg2uPEk,22058
|
|
126
129
|
pixeltable/io/utils.py,sha256=qzBTmqdIawXMt2bfXQOraYnEstL69eC2Z33nl8RrwJk,4244
|
|
127
130
|
pixeltable/iterators/__init__.py,sha256=hI937cmBRU3eWbfJ7miFthAGUo_xmcYciw6gAjOCg9g,470
|
|
128
|
-
pixeltable/iterators/audio.py,sha256=
|
|
131
|
+
pixeltable/iterators/audio.py,sha256=khW4M4P_J5twz1Eu3nuDP_73C9iWeCYZ5K_zQysvYxI,9671
|
|
129
132
|
pixeltable/iterators/base.py,sha256=ZC0ZvXL4iw6AmT8cu-Mdx-T2UG9nmJYV1C6LK4efAfw,1669
|
|
130
|
-
pixeltable/iterators/document.py,sha256=
|
|
133
|
+
pixeltable/iterators/document.py,sha256=UMmLeLQxyNfbhI8p3rBrE-sYrnJhpEUVaMLM50Iq-e8,19972
|
|
131
134
|
pixeltable/iterators/image.py,sha256=RrFdf5cnFIQzWKJk4uYi1m1p2qAiz909THYhRQ27DbY,3603
|
|
132
135
|
pixeltable/iterators/string.py,sha256=URj5edWp-CsorjN_8nnfWGvtIFs_Zh4VPm6htlJbFkU,1257
|
|
133
|
-
pixeltable/iterators/video.py,sha256=
|
|
136
|
+
pixeltable/iterators/video.py,sha256=8xjoelWoSsP0YDr9YGdugseXviGmqoytkgz4ESXC3iw,16105
|
|
134
137
|
pixeltable/metadata/__init__.py,sha256=oTO9kN6h4xJ2lsk4a2bq6ejAD-4wToy7b5_i3Pq1Qnc,3289
|
|
135
138
|
pixeltable/metadata/notes.py,sha256=3fdZDFpL1-b194Ejv0Y0YP-vbnV-XvVP9wOmZM9XARA,1545
|
|
136
|
-
pixeltable/metadata/schema.py,sha256=
|
|
139
|
+
pixeltable/metadata/schema.py,sha256=CL877NmO5ZOusqhURKkMjCoh00alW199p4onXab3iVg,13824
|
|
137
140
|
pixeltable/metadata/utils.py,sha256=NJQXWhhK1hdOZ4H3hh9N0mqbl-I9JqMUqrfA6OWLflE,2682
|
|
138
141
|
pixeltable/metadata/converters/convert_10.py,sha256=myYIo1DyccnsQUxDKG6mafnU5ge_EhZpHg_pesKBoK4,708
|
|
139
142
|
pixeltable/metadata/converters/convert_12.py,sha256=Ci-qyZW1gqci-8wnjeOB5afdq7KTuN-hVSV9OqSPx8g,162
|
|
@@ -168,31 +171,34 @@ pixeltable/metadata/converters/util.py,sha256=QUBOj2F_6rCAdIo0lgD1IVgAM15Vmq7ikQ
|
|
|
168
171
|
pixeltable/mypy/__init__.py,sha256=cD_oHXClR_bDM8qVNIfaOAgRhQjPfcWvLcinz79ua6o,54
|
|
169
172
|
pixeltable/mypy/mypy_plugin.py,sha256=KCjzKOeKW5CBqJOq9Ch7ZJ25ICPc4nlTB49DxtC6oDM,5460
|
|
170
173
|
pixeltable/share/__init__.py,sha256=PTX1mw61Ss4acEOI-sUlu0HaoVsosLqwDfh0ldn8Hkg,84
|
|
171
|
-
pixeltable/share/packager.py,sha256=
|
|
172
|
-
pixeltable/share/publish.py,sha256=
|
|
174
|
+
pixeltable/share/packager.py,sha256=UjpEv7wU_R4BKstMYw7PPULrSa4szN9KP8wwM4NU1-g,31563
|
|
175
|
+
pixeltable/share/publish.py,sha256=LHFKYrFlkhTZEwfMlWVDLlWvlz3uOYtHc0aX-X0rC6A,10964
|
|
173
176
|
pixeltable/utils/__init__.py,sha256=45qEM20L2VuIe-Cc3BTKWFqQb-S7A8qDtmmgl77zYK0,1728
|
|
174
|
-
pixeltable/utils/arrow.py,sha256=
|
|
177
|
+
pixeltable/utils/arrow.py,sha256=U7vb_ffPCR7zv-phyBMPMDosPdKN6LK4IVMpfm2mRy8,10424
|
|
175
178
|
pixeltable/utils/av.py,sha256=omJufz62dzaTTwlR7quKfcT7apf8KkBLJ9cQ9240dt0,4016
|
|
176
179
|
pixeltable/utils/coco.py,sha256=Y1DWVYguZD4VhKyf7JruYfHWvhkJLq39fzbiSm5cdyY,7304
|
|
177
180
|
pixeltable/utils/code.py,sha256=3CZMVJm69JIG5sxmd56mjB4Fo4L-s0_Y8YvQeJIj0F0,1280
|
|
178
181
|
pixeltable/utils/console_output.py,sha256=x23iDnNwUbsr7Ec20BQ7BLATTsrQZflxc9NucAt_sVU,1150
|
|
179
182
|
pixeltable/utils/coroutine.py,sha256=d87kLlkVIZq2u0kTE7kJ5Tc_yjEkdGi5sXAuxjLLxXY,896
|
|
180
|
-
pixeltable/utils/dbms.py,sha256=
|
|
183
|
+
pixeltable/utils/dbms.py,sha256=qigvBIVzEfii9rcxrkEvwNpNi7gvmf0uwr2CMjenJYc,3012
|
|
181
184
|
pixeltable/utils/description_helper.py,sha256=lwAduHT1yofH6loyNBwuCnMh-sY2e2FqHKDTVhrZDbg,3724
|
|
182
185
|
pixeltable/utils/documents.py,sha256=x3UHU7eykibyA3eVkSrCK1CQoaid228vp96WUEESssU,3105
|
|
183
186
|
pixeltable/utils/exception_handler.py,sha256=yrTAtUJEOhldps_k6aRLEf5yQ8gYGhl9c6ewYNC4Qfc,2476
|
|
184
187
|
pixeltable/utils/filecache.py,sha256=3TTEqhGg0pEAP_l0GKn34uspC4dha1jPab1Ka9_oTBM,10877
|
|
185
188
|
pixeltable/utils/formatter.py,sha256=tbMxE9rBw6wdKUnJhNZ8h9uAF8dZKcihQ2KesqAag9A,10096
|
|
189
|
+
pixeltable/utils/gcs_store.py,sha256=sk2TYZZv4QMJi_hyGvKAzORuABBblEGt4tgnq4eXdho,11361
|
|
186
190
|
pixeltable/utils/http_server.py,sha256=6khOAtpVj1lDIm9Dx8VIECLm87cFEp4IFbAg8T92A2o,2441
|
|
187
191
|
pixeltable/utils/iceberg.py,sha256=COeNqqy5RRMkDGLS8CTnaUeAccG10x2fwP3e1veuqIA,522
|
|
188
|
-
pixeltable/utils/
|
|
192
|
+
pixeltable/utils/lancedb.py,sha256=Otr-t47YACRo0Cq9-FyelcUuan1Kgs4gxCOpLOckj3s,2988
|
|
193
|
+
pixeltable/utils/local_store.py,sha256=HwxgkjW0r4Uc50XqLjMFpLecWnFeUIU0GPcIp_V5cig,13529
|
|
194
|
+
pixeltable/utils/object_stores.py,sha256=KUWYYm8g5HIPnwL4h1VgGQnGcDESX9ZQ65PaCxmfum4,21407
|
|
189
195
|
pixeltable/utils/pydantic.py,sha256=-ztUsuRXA7B6bywb5Yy1h5pNQ2DnsT1d0oHMxqtK3WY,2011
|
|
190
|
-
pixeltable/utils/pytorch.py,sha256=
|
|
191
|
-
pixeltable/utils/
|
|
196
|
+
pixeltable/utils/pytorch.py,sha256=77x2g4N6dkfYvqbxjYi_rBRiNnMMZAb2cNtBw0hOCHg,3582
|
|
197
|
+
pixeltable/utils/s3_store.py,sha256=l6X6vakjxtryUBJMsFYk7PUJLsMdmrVcUkF7LwZXdk0,14714
|
|
192
198
|
pixeltable/utils/sql.py,sha256=Sa4Lh-VGe8GToU5W7DRiWf2lMl9B6saPqemiT0ZdHEc,806
|
|
193
199
|
pixeltable/utils/transactional_directory.py,sha256=OFKmu90oP7KwBAljwjnzP_w8euGdAXob3y4Nx9SCNHA,1357
|
|
194
|
-
pixeltable-0.4.
|
|
195
|
-
pixeltable-0.4.
|
|
196
|
-
pixeltable-0.4.
|
|
197
|
-
pixeltable-0.4.
|
|
198
|
-
pixeltable-0.4.
|
|
200
|
+
pixeltable-0.4.14.dist-info/METADATA,sha256=xuHVcd3gGwflFXQHoXGqkq8PF4f9F-1RIaAAkO3Wi5M,25631
|
|
201
|
+
pixeltable-0.4.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
202
|
+
pixeltable-0.4.14.dist-info/entry_points.txt,sha256=rrKugZmxDtGnXCnEQ5UJMaaSYY7-g1cLjUZ4W1moIhM,98
|
|
203
|
+
pixeltable-0.4.14.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
204
|
+
pixeltable-0.4.14.dist-info/RECORD,,
|