Relative Content

Tag Archive for pythonasynchronousasync-awaitio

How to make I/O operation asyncronously using async await?

`I have written a python program to convert PDF into text files, those text files iinto more cleaned text files which are converted into CSV files which are later converted into a single CSV file.
The problem is the whole program does not execute at one go. When i execute it once, All the text files are created. But the CSV files are only generated when i execute the program again, after generation of the text files, How to fix this problem? I have tried using async await but apparently its not working