0xdevalias / devalias.net

Source for devalias.net
http://www.devalias.net/
49 stars 10 forks source link

[DeepDive] Series/Anime/Movie watchlists, tracking, etc #24

Open 0xdevalias opened 4 years ago

0xdevalias commented 4 years ago

Unsorted

Anime

AniDB

// https://anidb.net/anime/THEANIMEID

// Extract Groups
Array.from(groups = document.querySelectorAll('table#grouplist > tbody >tr'))
  .map(row => Array.from(row.querySelectorAll('td'))
    .map(col => ({
      className: col.className,
      text: col.innerText,
      link: (col.querySelector('a')||{}).href
    })
  )
)

// https://anidb.net/group/THEGROUPID/anime/THEANIMEID/release

Shoko Anime (aka: Japanese Media Manager (JMM))

Manami

anime-offline-database.json jq examples ``` ⇒ cat anime-offline-database.json | jq '.data[] | select(.title | contains("Sword Art Online: Alicization - War of Underworld")) | .title' "Sword Art Online: Alicization - War of Underworld" "Sword Art Online: Alicization - War of Underworld" "Sword Art Online: Alicization - War of Underworld" "Sword Art Online: Alicization - War of Underworld (2020)" "Sword Art Online: Alicization - War of Underworld 2" "Sword Art Online: Alicization - War of Underworld Reflection" ⇒ cat anime-offline-database.json | jq '.data[] | select(.title | contains("Sword Art Online: Alicization - War of Underworld")) | .synonyms' [ "SAO 3 2nd Season", "SAO Alicization 2", "SAO Alicization 2nd Season", "Sword Art Online 3 2nd Season", "Sword Art Online III 2nd Season", "Sword Art Online: Alicization 2", "Sword Art Online: Alicization 2nd Season", "そーどあーとおんらいんありしぜーしょんうぉーおぶあんだーわーるど", "ソードアート・オンライン アリシゼーション 2", "ソードアート・オンライン アリシゼーション War of Underworld" ] ..snip.. ⇒ cat anime-offline-database.json | jq '.data[] | select(.title | contains("Sword Art Online: Alicization - War of Underworld")) | .sources[] | select(contains("anidb"))' "https://anidb.net/anime/14796" "https://anidb.net/anime/15146" ```