├── .DS_Store ├── .gitattributes ├── README.md ├── check.py ├── error_migrations.py ├── error_process.py ├── process_file.py ├── readdata.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/README.md -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/check.py -------------------------------------------------------------------------------- /error_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/error_migrations.py -------------------------------------------------------------------------------- /error_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/error_process.py -------------------------------------------------------------------------------- /process_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/process_file.py -------------------------------------------------------------------------------- /readdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acho98/Validator/HEAD/readdata.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pymongo==3.12.0 2 | flatten-json==0.1.13 3 | tqdm --------------------------------------------------------------------------------