Documentation
¶
Index ¶
- Variables
- func Cookie(n string, v string)
- func Get(url string) (string, error)
- func GetWithClient(url string, client *http.Client) (string, error)
- func Header(n string, v string)
- func SetDebug(d bool)
- type Root
- func (r Root) Attrs() map[string]string
- func (r Root) Children() []Root
- func (r Root) Find(args ...string) Root
- func (r Root) FindAll(args ...string) []Root
- func (r Root) FindAllStrict(args ...string) []Root
- func (r Root) FindNextElementSibling() Root
- func (r Root) FindNextSibling() Root
- func (r Root) FindPrevElementSibling() Root
- func (r Root) FindPrevSibling() Root
- func (r Root) FindStrict(args ...string) Root
- func (r Root) FullText() string
- func (r Root) Text() string
Constants ¶
This section is empty.
Variables ¶
Cookies contains all HTTP cookies to send
Headers contains all HTTP headers to send
Functions ¶
func Get ¶
Get returns the HTML returned by the url in string using the default HTTP client
func GetWithClient ¶ added in v1.1.1
GetWithClient returns the HTML returned by the url using a provided HTTP client
Types ¶
type Root ¶
Root is a structure containing a pointer to an html node, the node value, and an error variable to return an error if occurred
func HTMLParse ¶
HTMLParse parses the HTML returning a start pointer to the DOM
func (Root) Attrs ¶
Attrs returns a map containing all attributes
func (Root) Children ¶ added in v1.1.1
Children retuns all direct children of this DOME element.
func (Root) Find ¶
Find finds the first occurrence of the given tag name, with or without attribute key and value specified, and returns a struct with a pointer to it
func (Root) FindAll ¶
FindAll finds all occurrences of the given tag name, with or without key and value specified, and returns an array of structs, each having the respective pointers
func (Root) FindAllStrict ¶ added in v1.1.1
FindAllStrict finds all occurrences of the given tag name only if all the values of the provided attribute are an exact match
func (Root) FindNextElementSibling ¶
FindNextElementSibling finds the next element sibling of the pointer in the DOM returning a struct with a pointer to it
func (Root) FindNextSibling ¶
FindNextSibling finds the next sibling of the pointer in the DOM returning a struct with a pointer to it
func (Root) FindPrevElementSibling ¶
FindPrevElementSibling finds the previous element sibling of the pointer in the DOM returning a struct with a pointer to it
func (Root) FindPrevSibling ¶
FindPrevSibling finds the previous sibling of the pointer in the DOM returning a struct with a pointer to it
func (Root) FindStrict ¶ added in v1.1.1
FindStrict finds the first occurrence of the given tag name only if all the values of the provided attribute are an exact match
func (Root) FullText ¶ added in v1.1.1
FullText returns the string inside even a nested element
Source Files
¶
- soup.go