Skip to content

Commit 7c760a2

Browse files
committed
update tutorial
1 parent 72b5db5 commit 7c760a2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

docs/tutorials/python/tutorial_scripts/storage_location.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ async def create_proxy_file_handle():
294294
db_path="/path/to/your/migration.db",
295295
include_table_files=False, # Set True if you also want table-attached files
296296
)
297+
index_result.as_csv("/path/to/your/index_results.csv")
297298
print(f"Migration index database: {index_result.db_path}")
298299
print(f"Indexed counts by status: {index_result.counts_by_status}")
299300

@@ -303,7 +304,7 @@ async def create_proxy_file_handle():
303304
continue_on_error=True,
304305
force=True, # Skip interactive confirmation for tutorial purposes
305306
)
306-
307+
migrate_result.as_csv("/path/to/your/migrate_results.csv")
307308
if migrate_result is not None:
308309
print(f"Migrated counts by status: {migrate_result.counts_by_status}")
309310
else:

0 commit comments

Comments
 (0)