Adding progress monitor while inserting data to a Oracle db using Python
Advertisements I would like to add a progress bar in my python script. I am running following lines of code. I am reading a file ‘MRSTY.RRF’ which is 0.195 MB. I would like to how much file has been processed. insert_sty = "insert into MRSTY (CUI,TUI,STN,STY,ATUI,CVF) values (:0,:1,:2,:3,:4,:5)" records=[] with open("../umls_files/umls-2023AA-metathesaurus-full/2023AA/META/MRSTY.RRF" , ‘r’) as f:… Read More Adding progress monitor while inserting data to a Oracle db using Python