Created
December 31, 2019 05:14
-
-
Save nyancodeid/39547926b8a8dd978722e3b965fa690d to your computer and use it in GitHub Desktop.
NyanGrab v2.0-alpha
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "url": "https://www.detik.com/", | |
| "debug": true, | |
| "query": [ | |
| { | |
| "name": "articles", | |
| "selector": ".berita-utama article", | |
| "loop": [ | |
| { | |
| "name": "title", | |
| "selector": ".media .media__title a", | |
| "type": "text", | |
| "_trim": true | |
| }, | |
| { | |
| "name": "image", | |
| "selector": ".media .media__image img", | |
| "type": "attr", | |
| "attr": "src" | |
| }, | |
| { | |
| "name": "link", | |
| "selector": ".media .media__image a", | |
| "type": "attr", | |
| "attr": "href" | |
| } | |
| ] | |
| }, | |
| { | |
| "name": "footer", | |
| "selector": "div.footer-title.footer-title__copyright", | |
| "type": "text" | |
| }, | |
| { | |
| "name": "footer-nav", | |
| "selector": "nav.footer-nav ul.nav li.nav__item", | |
| "loop": [ | |
| { | |
| "name": "link", | |
| "selector": "a", | |
| "type": "attr", | |
| "attr": "href", | |
| "_plugins": [ | |
| "ng_strings/smartlink" | |
| ] | |
| }, | |
| { | |
| "name": "text", | |
| "selector": "a", | |
| "type": "text" | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment