- Switch to `jsonschema_rs` for performance enhancement, instead of `jsonschema` package - Refactor code for improve memory utilization - Added garbage collector
0.2.6
- Add garbage collection to free up memory after validation
0.2.5
- Updated geopandas package
0.2.3
- Performance improvement if there are any errors
0.2.2
- Added functionality to get the specific number of errors
validator = OSWValidation(zipfile_path=<ZIP_FILE_PATH>) result = validator.validate() // will return only first 20 errors by default result = validator.validate(max_errors=10) // will return only first 10 errors
0.2.1
- Updated zipfile_handler - Fixed "No .geojson files found in the specified directory or its subdirectories." issue