Skip to content

plainas/tq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3f5ec28 · Sep 1, 2021

History

53 Commits
Nov 25, 2019
Sep 28, 2015
Jun 12, 2018
Nov 24, 2019
Nov 24, 2019
Oct 15, 2019
Oct 14, 2019
Oct 15, 2019
Nov 30, 2015
Sep 1, 2021
Nov 25, 2019
Oct 15, 2019
Oct 15, 2019

Repository files navigation

tq

tq is command line utility that performs an HTML element selection on HTML content passed to the stdin. Using css selectors that everybody knows.

Since input comes from stdin and output is sent to stdout, it can easily be used inside traditional UNIX pipelines to extract content from webpages and html files.

tq provides extra formating options such as json-encoding or newlines squashing, so it can play nicely with everyones favourite command line tooling.

Installation

sudo pip3 install https://github.com/plainas/tq/zipball/stable

Example usage

Get headlines from hacker news

curl https://news.ycombinator.com/news | tq -tj ".title a"

Get the title of an html document stored in a file

cat mydocument.html | tq -t title

Get all the images from a webpage

curl -s 'http://example.com/' | tq  "img" -a src | wget -i -

Notice that tq doesn't provide a way to make http requests or read files. You can use your favorite HTTP client, or provide the html source from any source you want.

For a modern, user friendly http client, check httpie. Or you can just use curl, wget, netcat, etc.

Command options

  • SELECTOR A css selector

  • -a ATTRIBUTE --attr=ATTRIBUTE Outputs only the contents of the html ATTRIBUTE.

  • -t, --text Outputs only the inner text of the selected elements.

  • -p, --parent Select the parent elements instead.

  • -q, --squash Squash lines.

  • -s, --squash-space Squash spaces.

  • -j, --json-lines JSON encode each match.

  • -J, --json Output as json array of strings.

  • -v, --version Prints tq version