Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.15 KB

readme.md

File metadata and controls

50 lines (36 loc) · 1.15 KB

CSVEmailVerifier

  • First parameter [mandatory]: the path of the csv file (csv separator column separator as ,)
  • Second parameter [mandatory]: the number of the email column
  • Third parameter: export in two different csv file the output [true|false (default)]
  • Forth parameter: jump first line [true|false (default)]

Example:

./csvemailverifier.py ./test.csv 2 true true

Output:

CSVEmailVerifier 1.0 by Mte90 for Codeat - https://github.com/CodeAtCode
Evaluating in progress
 Email 1 [email protected] exist!
 Email 2 [email protected] not exist!
Check in the same path of the input file for the correct.test.csv and wrong.test.csv output file
Processed 2 email in 1 seconds

Requirements

pip install email_validator 

SplitCSV

  • First parameter [mandatory]: the file
  • Second parameter [mandatory]: the lines number
splitcsv.py ./test.csv 100

Generate the file with pattern [filename]-[number].csv

MergeCSV

  • First parameter [mandatory]: the pattern for the files in ""
  • Second parameter [mandatory]: output file
mergecsv.py "./wrong.file-*.csv" ./emailwrong.csv

Merge the file with pattern [filename]-[*].csv