1 files changed, 26 insertions(+), 0 deletions(-)
A README.md
A README.md => README.md +26 -0
@@ 0,0 1,26 @@
+# yts
+
+Search YouTube from the command line without relying on the YouTube API.
+
+## Building
+
+`yts` requires Go to build.
+
+```
+git clone https://git.sr.ht/~gjabell/yts && cd yts
+go build
+go install # or manually install the binary somewhere in your path
+```
+
+## Usage
+
+```
+$ yts -h
+Usage: yts [-d] [-h] [-q] [-n] [-p page] search...
+
+ -d Print additional debug information (default: false)
+ -h Show a help message and quit
+ -n Don't colorize output (default: false)
+ -q Quiet mode: only print video URLs
+ -p The page of results to fetch (default: 1)
+```