dominator 1.0.3

A HTML scraper Command-line Application


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

dominator

dominator is a forgiving HTML-Parser for the Command-line.

usage & examples

###Parameters

ParametershortDescription
--filter-fA Dominator specific filter expression
--output-item-oDefines the output
--output-item-terminator-tCharacter, that terminates one item group on output
--output-item-serparator-sCharacter, that separates the items on output
--input-file-iRead the input from a file instead of stdin
--with-html-commentsinclude matches in commented html into the output

This example shows a query for a-tags, that are children of a li-tag and has a class attibute with the value "link". We want to the output to be "Tag"\t"Element attributes csv"\t"value of the element ettribute href"\n for each hit

$ cat ./dummy.html | ./dominator -f'li.a{class:link}' -o'tag' -o'attrib-keys' -o'attrib(href)'
a	href,id,class	#a-1-li-1-o2-1
a	href,id,class	#a-2-li-2-o2-1
a	href,id,class	#a-3-li-2-o2-1

This Example shows a query for a-tags where the href begins with "http"

$ cat ./dummy.html | ./dominator -f'a{href:(regex)^http}' -o'tag' -o'attrib-keys' -o'attrib(href)'
a	href,id,class	https://github.com

#Filter Syntax Expression = TAG[PICK]{ATTRNAME:ATTRVALUE}

Multiple expression can be concatenated with "." to find stuff inside of specific parent nodes.

ItemDescriptionExample
TAGThe Name of the nodea , p , div , *
[PICK](can be ommited) Picks only the n-th match. n begins on 1. PICK can be a list or range[1] picks the first match , [1,3] picks the first and third , [1..3] picks the first three matches
{ATTRNAME:ATTRVALUE}(can be ommited) The attribute selector{id:myID} , {class:someClass} , {href:(regex)^http://}

Build & install

###build dub build dominator copy the binary in one of your PATH directories

###use a already build binary Check out the bin/ directory. Occasionally i put Windows and Mac binaries in this directory - please be aware, that these binaries usually are not up to date.

Authors:
  • Martin Brzenska
Dependencies:
libdominator
Versions:
1.1.6 2017-Oct-31
1.1.5 2017-Oct-07
1.1.3 2017-Jan-08
1.1.2 2016-Dec-06
1.1.1 2016-Nov-22
Show all 12 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 2 downloads this month

  • 113 downloads total

Score:
1.1
Short URL:
dominator.dub.pm