1
0
Fork 0
mirror of https://github.com/kemayo/leech synced 2025-12-06 16:33:16 +01:00

Include some examples for the arbitrary handler

This commit is contained in:
David Lynch 2017-10-22 17:33:43 -05:00
parent 257ab69394
commit df8e67d3e1
6 changed files with 40 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,6 +1,6 @@
*.epub
*.mobi
*.json
./*.json
leech.db
leech.sqlite
leech.cookies

View file

@ -0,0 +1,7 @@
{
"url": "http://hfy-archive.org/book/deathworlders/chapter-01-kevin-jenkins-experience",
"title": "Deathworlders",
"author": "Philip Richard Johnson, AKA Hambone",
"chapter_selector": "#block-book-navigation .menu a",
"content_selector": "article .node-content .field-name-body .field-item"
}

View file

@ -0,0 +1,8 @@
{
"url": "https://ceruleanscrawling.wordpress.com/table-of-contents/",
"title": "Heretical Edge",
"author": "Ceruelean",
"chapter_selector": "article .entry-content > p > a",
"content_selector": "article .entry-content",
"filter_selector": ".sharedaddy, .wpcnt, style"
}

8
examples/practical1.json Normal file
View file

@ -0,0 +1,8 @@
{
"url": "https://practicalguidetoevil.wordpress.com/table-of-contents/",
"title": "A Practical Guide To Evil: Book 1",
"author": "erraticerrata",
"chapter_selector": "#main .entry-content > ul:nth-of-type(1) > li > a",
"content_selector": "#main .entry-content",
"filter_selector": ".sharedaddy, .wpcnt, style"
}

8
examples/practical2.json Normal file
View file

@ -0,0 +1,8 @@
{
"url": "https://practicalguidetoevil.wordpress.com/table-of-contents/",
"title": "A Practical Guide To Evil: Book 2",
"author": "erraticerrata",
"chapter_selector": "#main .entry-content > ul:nth-of-type(2) > li > ul > li > a",
"content_selector": "#main .entry-content",
"filter_selector": ".sharedaddy, .wpcnt, style"
}

8
examples/practical3.json Normal file
View file

@ -0,0 +1,8 @@
{
"url": "https://practicalguidetoevil.wordpress.com/table-of-contents/",
"title": "A Practical Guide To Evil: Book 3",
"author": "erraticerrata",
"chapter_selector": "#main .entry-content > ul:nth-of-type(3) > li > a",
"content_selector": "#main .entry-content",
"filter_selector": ".sharedaddy, .wpcnt, style"
}