Created
January 26, 2017 21:10
-
-
Save ringods/3ac30de8ee28fadefa318ae857b365c5 to your computer and use it in GitHub Desktop.
Delicious Bookmark Scraping
This file contains 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
{ | |
"_id": "delicious", | |
"selectors": [ | |
{ | |
"delay": "", | |
"id": "per_page_bookmarks_enumeration", | |
"multiple": false, | |
"parentSelectors": [ | |
"_root" | |
], | |
"selector": "div.profileMidpanel", | |
"type": "SelectorElement" | |
}, | |
{ | |
"delay": "", | |
"id": "single_bookmark_data", | |
"multiple": true, | |
"parentSelectors": [ | |
"per_page_bookmarks_enumeration" | |
], | |
"selector": "div.articleThumbBlockOuter", | |
"type": "SelectorElement" | |
}, | |
{ | |
"delay": "", | |
"id": "bookmark_title", | |
"multiple": false, | |
"parentSelectors": [ | |
"single_bookmark_data" | |
], | |
"regex": "", | |
"selector": "a.title", | |
"type": "SelectorText" | |
}, | |
{ | |
"delay": "", | |
"id": "bookmark_link", | |
"multiple": false, | |
"parentSelectors": [ | |
"single_bookmark_data" | |
], | |
"regex": "", | |
"selector": "div.articleInfoPan p:nth-of-type(1)", | |
"type": "SelectorText" | |
}, | |
{ | |
"delay": "", | |
"extractAttribute": "a", | |
"id": "tag", | |
"parentSelectors": [ | |
"single_bookmark_data" | |
], | |
"selector": "ul.tagName li", | |
"type": "SelectorGroup" | |
}, | |
{ | |
"delay": "", | |
"id": "description", | |
"multiple": false, | |
"parentSelectors": [ | |
"single_bookmark_data" | |
], | |
"regex": "", | |
"selector": "div.thumbTBriefTxt p:nth-of-type(2)", | |
"type": "SelectorText" | |
} | |
], | |
"startUrl": [ | |
"https://del.icio.us/<your_account_id>", | |
"https://del.icio.us/<your_account_id>?&page=[2-<your_maximum_page>]" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fantastic, thanks!
Described at https://ringo.de-smet.name/2017/01/exporting-delicious-bookmarks-2017/