Improved anilist connect
This commit is contained in:
parent
cc2418cd96
commit
ba445f6d74
@ -1,8 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/animenotifier/anilist"
|
"github.com/animenotifier/anilist"
|
||||||
"github.com/animenotifier/arn"
|
"github.com/animenotifier/arn"
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
@ -19,12 +17,17 @@ func main() {
|
|||||||
stream := anilist.StreamAnime()
|
stream := anilist.StreamAnime()
|
||||||
|
|
||||||
for aniListAnime := range stream {
|
for aniListAnime := range stream {
|
||||||
|
println(aniListAnime.TitleRomaji)
|
||||||
|
|
||||||
anime := arn.FindAniListAnime(aniListAnime, allAnime)
|
anime := arn.FindAniListAnime(aniListAnime, allAnime)
|
||||||
|
|
||||||
if anime == nil {
|
if anime != nil {
|
||||||
fmt.Println(anime.ID, aniListAnime.TitleRomaji)
|
color.Green("%s %s", anime.ID, aniListAnime.TitleRomaji)
|
||||||
|
count++
|
||||||
|
} else {
|
||||||
|
color.Red("Not found")
|
||||||
}
|
}
|
||||||
|
|
||||||
count++
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
color.Green("%d anime are connected with AniList", count)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user