Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hejsil/aniz
A program for keeping a local list of anime you have watched
https://github.com/hejsil/aniz
anime anime-list cli database zig
Last synced: 2 months ago
JSON representation
A program for keeping a local list of anime you have watched
- Host: GitHub
- URL: https://github.com/hejsil/aniz
- Owner: Hejsil
- License: mit
- Created: 2021-01-02T15:36:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T22:00:40.000Z (8 months ago)
- Last Synced: 2024-05-02T02:55:54.649Z (8 months ago)
- Topics: anime, anime-list, cli, database, zig
- Language: Zig
- Homepage:
- Size: 189 KB
- Stars: 22
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# aniz
aniz is a program for keeping a local list of anime you have watched.
## Example
```sh
$ # First, an anime database needs to be downloaded.
$ # Run this once a week to have the latest database at all time.
$ aniz database download$ # Search for an anime in the database
$ aniz database -s 'Attack on titan' | head -n1
tv 2013 spring 25 Shingeki no Kyojin https://anidb.net/anime/9541 https://cdn.myanimelist.net/images/anime/10/47347.jpg$ # Add one or more animes to your list
$ aniz list plan-to-watch \
https://anidb.net/anime/9541 \
https://anilist.co/anime/11981 \
https://kitsu.io/anime/7929$ # Show your list
$ aniz list
2023-04-19 p 0 0 Shingeki no Kyojin https://anidb.net/anime/9541
2023-04-19 p 0 0 RWBY https://kitsu.io/anime/7929
2023-04-19 p 0 0 Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari https://anilist.co/anime/11981$ # Watch an episode
$ aniz list watch-episode https://kitsu.io/anime/7929
$ aniz list
2023-04-19 w 1 0 RWBY https://kitsu.io/anime/7929
2023-04-19 p 0 0 Shingeki no Kyojin https://anidb.net/anime/9541
2023-04-19 p 0 0 Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari https://anilist.co/anime/11981$ # Complete show
$ aniz list complete https://anidb.net/anime/9541
$ aniz list
2023-04-19 w 1 0 RWBY https://kitsu.io/anime/7929
2023-04-19 p 0 0 Mahou Shoujo Madoka★Magica Movie 3: Hangyaku no Monogatari https://anilist.co/anime/11981
2023-04-19 c 25 1 Shingeki no Kyojin https://anidb.net/anime/9541```