Skip to content

Commit da5d6a1

Browse files
committed
chore: update references to qsv repo
1 parent a587f19 commit da5d6a1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

appendix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Here you may find conceptual content related to the exercises in the book.
1515

1616
## qsv version
1717

18-
qsv has multiple versions and may differ for each system. Here we run [a command](https://github.com/jqnatividad/qsv/blob/master/docs/PERFORMANCE.md#version-details) to show what version of qsv this book is using along with other information:
18+
qsv has multiple versions and may differ for each system. Here we run [a command](https://github.com/dathere/qsv/blob/master/docs/PERFORMANCE.md#version-details) to show what version of qsv this book is using along with other information:
1919

2020
```{code-cell}
2121
qsv --version

exercises-setup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ If you already have qsv installed on your system and accessible from `PATH` then
6767

6868
##### Download and extract qsv
6969

70-
You may download qsv as an executable file which you may run in a terminal like other commands. There are [multiple ways](https://github.com/jqnatividad/qsv#installation-options) to download qsv and multiple versions of qsv.
70+
You may download qsv as an executable file which you may run in a terminal like other commands. There are [multiple ways](https://github.com/dathere/qsv#installation-options) to download qsv and multiple versions of qsv.
7171

72-
Here's one way to download the latest version (arbitrarily represented as version `X.Y.Z`). You may download the latest version of qsv from the latest releases on GitHub at: [https://github.com/jqnatividad/qsv/releases/latest](https://github.com/jqnatividad/qsv/releases/latest#). Under the Assets section of the latest release you may find many files, so choose the right one based on your operating system and system architecture.
72+
Here's one way to download the latest version (arbitrarily represented as version `X.Y.Z`). You may download the latest version of qsv from the latest releases on GitHub at: [https://github.com/dathere/qsv/releases/latest](https://github.com/dathere/qsv/releases/latest#). Under the Assets section of the latest release you may find many files, so choose the right one based on your operating system and system architecture.
7373

7474
Here are the files we suggest if you're unsure:
7575

@@ -107,14 +107,14 @@ Tab completions allow you to press the tab key at certain locations while typing
107107

108108
qsv currently supports completions for the following shells: bash, zsh, powershell, fish, nushell, fig, and elvish.
109109

110-
Download the current completions file for your shell from qsv's source code at [`contrib/completions/examples`](https://github.com/jqnatividad/qsv/blob/master/contrib/completions/examples).
110+
Download the current completions file for your shell from qsv's source code at [`contrib/completions/examples`](https://github.com/dathere/qsv/blob/master/contrib/completions/examples).
111111

112112
For example to enable the Bash completions:
113113

114114
1. Run `source qsv.bash` to enable the completions in your current terminal instance (or replace `qsv.bash` to the path to it if not in your current working directory).
115115
2. You may also move `qsv.bash` to your home directory (`~/qsv.bash`) and also create a `.bashrc` file in your home directory (`~/.bashrc`) to include `source qsv.bash` as a line within it for the completions script to run whenever you launch a bash terminal.
116116

117-
Feel free to contribute to maintaining the completions if you know a bit of Rust [here](https://github.com/jqnatividad/qsv/tree/master/contrib/completions).
117+
Feel free to contribute to maintaining the completions if you know a bit of Rust [here](https://github.com/dathere/qsv/tree/master/contrib/completions).
118118

119119
:::{admonition} Reminder for exercises
120120
:class: important

index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ You may report errors on [the issues page](https://github.com/dathere/100.dather
77

88
Welcome to 100 exercises with qsv!
99

10-
In this book you may learn how to solve various data engineering issues with [qsv](https://github.com/jqnatividad/qsv).
10+
In this book you may learn how to solve various data engineering issues with [qsv](https://github.com/dathere/qsv).
1111

12-
qsv is a **command-line tool** built with Rust for spreadsheet data wrangling (CSV, Excel, TSV, TAB, etc.) and can handle large file sizes in relatively fast speeds. With [50+ commands](https://github.com/jqnatividad/qsv?tab=readme-ov-file#available-commands) (when all features are enabled), there are plenty of use cases qsv can handle.
12+
qsv is a **command-line tool** built with Rust for spreadsheet data wrangling (CSV, Excel, TSV, TAB, etc.) and can handle large file sizes in relatively fast speeds. With [50+ commands](https://github.com/dathere/qsv?tab=readme-ov-file#available-commands) (when all features are enabled), there are plenty of use cases qsv can handle.
1313

1414
If you're unfamiliar with qsv then don't worry. The initial exercises are intended for beginners that haven't tried qsv yet. We'll explore multiple features qsv has to offer while solving problems you may find in real-world scenarios. You may learn to use qsv in an interactive way by practicing exercises to resolve data wrangling issues.
1515

lessons/0/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The exercise requires finding the **total number of rows** in `fruits.csv`. As d
110110

111111
If you run `qsv count fruits.csv` then in your terminal you should see `3` as the output. Running it again this time with the `--no-headers` flag (or `-n` for short), you get the correct number of total rows `4` which includes the header row (which is the first row in the CSV file).
112112

113-
It may sound unusual that by using the `--no-headers` flag, the header row gets included in the row count. You may share any ideas for improvements to qsv on [qsv's GitHub discussions](https://github.com/jqnatividad/qsv/discussions).
113+
It may sound unusual that by using the `--no-headers` flag, the header row gets included in the row count. You may share any ideas for improvements to qsv on [qsv's GitHub discussions](https://github.com/dathere/qsv/discussions).
114114

115115
:::
116116

0 commit comments

Comments
 (0)