File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 33` webpluck ` scrapes a specific values from a web page. It works as a standalone
44binary as well as in a API mode.
55
6- ## Inputs
6+ ## Download
7+
8+ ### Latest Releases
9+ ` webpluck ` is available for 64 bit linux, OS X and Windows systems.
10+ Latest versions can be downloaded from the
11+ [ Release] ( https://github.com/codeexpress/webpluck/releases ) tab above. This is the preferred way.
12+
13+ ### Build from source
14+ This is a golang project. Assuming you have golang compiler installed,
15+ the following will build the binary from scratch
16+ ```
17+ $ git clone https://github.com/codeexpress/webpluck
18+ $ cd webpluck
19+ $ go get
20+ $ go build -o webpluck main.go logger.go webpluck.go
21+ ```
22+
23+ ## Usage
724` webpluck ` takes the following input:
825 - URL of the webpage
926 - XPATH of the element
@@ -89,4 +106,5 @@ The result from the API is as follows. The `pluckedData` field returns the value
89106 "pluckedData" : " Joel Spolsky and Jeff Atwood" ,
90107 "regex" : " ^(.*) launch .*" ,
91108 "xpath" : " //*[@id=\" content\" ]/section[3]/ol/li[1]/ol/li[2]/text()"
109+ }
92110```
You can’t perform that action at this time.
0 commit comments