-
Notifications
You must be signed in to change notification settings - Fork 59
Inline mode
Vadim edited this page Oct 26, 2022
·
14 revisions
Inline mode is intended to be used inside various scripts.
Search for "death note" manga using Manganato source and print results to stdout in json format
mangal inline -S "Manganato" --query "death note" --json
Download the first 3 chapters of "Bleach" from Mangapill in CBZ format (indices start from 0 for selectors)
mangal inline -S Mangapill --query "bleach" --manga first --chapters 0-2 --download --format cbz
Use different anilist manga (id 97852) for all mangas with the title "Komi-San Wa Komyushou Desu"
mangal inline anilist set --name "Komi-San Wa Komyushou Desu" --id 97852
Example output for mangal inline -S Mangapill --query "death note" --manga first -c 0 -p -j
{
"Manga": [
{
"Name": "Death Note",
"URL": "https://mangapill.com/manga/938/death-note",
"Index": 0,
"ID": "death-note",
"Chapters": [
{
"Name": "Chapter 1",
"URL": "https://mangapill.com/chapters/938-10001000/death-note-chapter-1",
"Index": 1,
"ID": "death-note-chapter-1",
"Volume": "",
"Pages": [
{
"URL": "https://cdn.readdetectiveconan.com/file/mangap/938/10001000/1.jpg",
"Index": 0,
"Extension": ".jpg"
}
// other pages...
]
}
],
"Metadata": {
"Genres": [
"Drama",
"Mystery",
"Psychological",
"Supernatural",
"Thriller"
],
"Summary": "When Light Yagami finds a notebook giving him power over death, will he use it for good—or evil?\n\nLight Yagami is an ace student with great prospects—and he’s bored out of his mind. But all that changes when he finds the Death Note, a notebook dropped by a rogue Shinigami death god. Any human whose name is written in the notebook dies, and Light has vowed to use the power of the Death Note to rid the world of evil. But will Light succeed in his noble goal, or will the Death Note turn him into the very thing he fights against?\n\n(Source: Viz Media)",
"Author": "",
"Cover": "https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/nx30021-qfGufBWpSX1z.jpg",
"Tags": [
"Detective",
"Police",
"Tragedy",
"Anti-Hero",
"Crime",
"Urban Fantasy",
"Male Protagonist",
"Philosophy",
"Espionage",
"Gods",
"Primarily Male Cast",
"Shounen",
"Time Skip",
"Amnesia",
"Politics",
"Demons",
"Foreign"
],
"Characters": [
"Ryuk",
"Misa Amane",
"Mihael Keehl",
"L Lawliet",
"Nate River",
"Light Yagami"
],
"Status": "FINISHED",
"StartDate": {
"Year": 2003,
"Month": 12,
"Day": 1
},
"EndDate": {
"Year": 2006,
"Month": 5,
"Day": 15
},
"Synonyms": [
"デスノート",
"Ölüm Defteri",
"Death Note - Zápisník smrti",
"Beležnica smrti",
"Τετράδιο θανάτου"
],
"URLs": [
"https://anilist.co/manga/30021",
"https://mangaplus.shueisha.co.jp/titles/100008",
"https://www.viz.com/shonenjump/chapters/death-note",
"https://myanimelist.net/manga/21"
]
}
}
]
}