docs: update serverless_lancedb_with_s3_and_lambda.md (#1559)

This commit is contained in:
Bill Chambers
2024-08-26 02:25:28 -07:00
committed by GitHub
parent 549ca51a8a
commit 9c25998110

View File

@@ -25,8 +25,8 @@ s3://eto-public/datasets/sift/vec_data.lance
Then, we can write a quick Python script to populate our LanceDB Table:
```python
import pylance
sift_dataset = pylance.dataset("/path/to/local/vec_data.lance")
import lance
sift_dataset = lance.dataset("/path/to/local/vec_data.lance")
df = sift_dataset.to_table().to_pandas()
import lancedb