File tree Expand file tree Collapse file tree
docs/tutorials/python/tutorial_scripts Expand file tree Collapse file tree Original file line number Diff line number Diff 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" )
297298print (f"Migration index database: { index_result .db_path } " )
298299print (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" )
307308if migrate_result is not None :
308309 print (f"Migrated counts by status: { migrate_result .counts_by_status } " )
309310else :
You can’t perform that action at this time.
0 commit comments