-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdoc.go
More file actions
23 lines (23 loc) · 724 Bytes
/
doc.go
File metadata and controls
23 lines (23 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//Package pagser is a simple, easy, extensible, configurable HTML parser to struct based on goquery and struct tags,
//It's parser library from scrago.
//
// The project source code: https://github.com/foolin/pagser
//
// Features
//
// * Simple - Use golang struct tag syntax.
//
// * Easy - Easy use for your spider/crawler/colly application.
//
// * Extensible - Support for extension functions.
//
// * Struct tag grammar - Grammar is simple, like \`pagser:"a->attr(href)"\`.
//
// * Nested Structure - Support Nested Structure for node.
//
// * Configurable - Support configuration.
//
// * GoQuery/Colly - Support all goquery project, such as go-colly.
//
// More info: https://github.com/foolin/pagser
package pagser