Python Script to find invalid records. | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Python Script to find invalid records.

How can i write a python automation script which will work on CSV file level. Before the file gets process by a sql process, python script should read the file and mark invalid records which will avoid failing of sql process.

18th Jul 2017, 1:48 PM
Aniket Nare
Aniket Nare - avatar
2 Réponses
+ 5
You can use pandas library. It basically is best suited for manipulating dataframes and it has a very powerful read_csv() method. Once you read your data into a dataframe it is easily managed and mass-processed, so it shall suit your needs perfectly, as far as I can see.
18th Jul 2017, 8:08 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
0
oh thanks.. I will give a try.. let see it works for me.
22nd Jul 2017, 5:47 AM
Aniket Nare
Aniket Nare - avatar