Reading From A CSV File While It Is Being Written To
So before I start I know this is not the proper way to go about doing this but this is the only method that I have for accessing the data I need on the fly. I have a system which
Solution 1:
You can do something like:
tailf csv_file | python your_script.py
and read from sys.stdin
Post a Comment for "Reading From A CSV File While It Is Being Written To"