get comics
1.0.0
get-comics
เป็นเครื่องมือสำหรับดาวน์โหลดรายชื่อการ์ตูนจากเว็บไซต์ https://getcomics.org
มันขึ้นอยู่กับแพ็คเกจ ComicScraper โดย Gink3
แพ็คเกจนี้สร้างโดยใช้ Node.js และต้องใช้โหนด v12.17 ขึ้นไปจึงจะรันได้เนื่องจากใช้ ES Modules
หากต้องการติดตั้งคำสั่งทั่วโลกให้รันคำสั่งนี้:
npm ฉัน -g รับการ์ตูน
หากต้องการดาวน์โหลดการ์ตูนลงในไดเร็กทอรีปัจจุบันของคุณ ให้รันคำสั่งนี้ทุกที่:
รับการ์ตูน
คุณสามารถกรองการ์ตูนที่คุณต้องการดาวน์โหลดและกำหนดจำนวนหน้าที่คุณต้องการดาวน์โหลดโดยใช้แฟล็กเหล่านี้:
Basic Options -h, --help Display this usage guide. -o, --output string The location to store the resulting files in. If the directory does not exist, it will be created. Defaults to the current directory. -w, --overwrite If passed, new comics with the same filenames will overwrite existing files with the same names. -l, --save-links When passed, a file named links_.json will be saved in the same directory as the downloaded comics. -b, --base-url string The base URL to use for downloading comics. This should only be changed if the GetComics site changes its domain. Selection Options -p, --pages number The total number of pages to download, starting from the most recently uploaded. If you pass 0, all available pages will be downloaded. -s, --start number The page to start parsing comic links on. Filter Options -u, --url string A specific GetComics page URL to download all comics from. If this option is passed, most other selection options will be ignored. ex. https://getcomics.org/other-comics/gideon-falls-deluxe-edition-book-1- the-legend-of-the-black-barn-2021/ -q, --query string A search query to filter comics with. ex. "Donald Duck" -t, --tag string A GetComics specific tag page to download comics with. This can be found in the URL of the site at /tag/ . ex. "the-walking-dead" or "superman" -c, --category string A GetComics specific category for comics. This can be found in the URL of the site at /cat/ ex. "dc" or "marvel" Processing Options --no-extract By default any .zip archives containing a collection of comics will be extracted and the archive file will be removed. If this option is passed, the archive file will be left as is. -z, --cbz Convert any downloaded .cbr files to .cbz
ดาวน์โหลดไฟล์เก็บถาวร Marvel ทั้งหมดไปยังโฟลเดอร์รูท comics
:
รับการ์ตูน -c มหัศจรรย์ -p 0 -o "~ / การ์ตูน"
ดาวน์โหลดการ์ตูน 5 หน้าล่าสุดจากหน้าแรก:
รับการ์ตูน -p 5
ดาวน์โหลดหน้าล่าสุดของการ์ตูนที่แท็กด้วย "the-walking-dead":
get-comics --tag the-walking-dead
หากต้องการใช้แพ็คเกจนี้ในแอปโหนดของคุณเอง คุณสามารถติดตั้งและใช้งานได้ดังนี้:
ติดตั้ง get-comics.npm
นำเข้า getComics จาก "get-comics"; ฟังก์ชัน async downloadAllComics () { รอ getComics ({ หน้า: 3, แท็ก: "superman", noExtract: true, saveLinks: true, }); console.log("ดาวน์โหลดการ์ตูนเสร็จแล้ว");}downloadAllComics();