└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # DataHub Labs 2 | 3 | A repo for data wrangling experiments. 4 | 5 | ## 2025-09-23 6 | 7 | ### Trying qsv 8 | 9 | Wanted to try out https://github.com/dathere/qsv. However, couldn't find out an easy way to install in github codespaces. Last local install attempt on mac was also a bit painful. So leaving for now. 10 | 11 | Moved on to https://pola.rs/ which i noticed qsv was using. 12 | 13 | ### Trying polars 14 | 15 | https://pola.rs/ and https://docs.pola.rs/user-guide/getting-started/. 16 | 17 | ``` 18 | pip install polars 19 | ``` 20 | 21 | Just worked. Then looked for CLI and found https://github.com/pola-rs/polars-cli 22 | 23 | ``` 24 | pip install polars-cli 25 | ``` 26 | 27 | Need a csv, so let's get one ... --------------------------------------------------------------------------------