Charlie Lefrak

Results 6 comments of Charlie Lefrak

Is 2.0 out yet? Or is there a way to programmatically create datasets? We're importing a bunch of datasets (~400) from an existing data catalog and would love to automate...

👋 hi all! I ❤️ csvkit, and just wanted to bump this as it would be really helpful to use it to validate CSV files and return an exit code...

Awesome- thanks @jpmckinney. Currently getting around this with some 'fun' grep usage: ```bash csv_valid_exit_code=$(csvclean "$csv_file" | grep 'errors logged' > /dev/null 2>&1; echo $?) ``` but just wanted to say...