-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# mal-cli - A CLI for MyAnimeList | ||
|
||
mal-cli is a CLI for MyAnimeList, written in GO. It allows you to search for anime and manga, view details about them, add them to your list, and edit your list. | ||
|
||
## Installation | ||
|
||
```bash | ||
go get github.com/scandar/mal-cli | ||
``` | ||
|
||
## Usage | ||
|
||
```bash | ||
mal-cli [command] | ||
``` | ||
|
||
## Authentication | ||
|
||
Before using the tool you need to authenticate with MyAnimeList. You can do this by running the following command: | ||
|
||
```bash | ||
mal-cli auth | ||
``` | ||
|
||
## Commands | ||
|
||
```bash | ||
anime-details Get anime details | ||
anime-list Authenticated user's anime list | ||
auth Authenticate with MyAnimeList | ||
completion Generate the autocompletion script for the specified shell | ||
delete-anime Delete an entry from the user's anime list | ||
delete-manga Delete an entry from the user's manga list | ||
find-anime Search for anime by name | ||
find-manga Search for manga by name | ||
help Help about any command | ||
manga-details Get manga details | ||
manga-list Authenticated user's manga list | ||
me Get authenticated user info | ||
update-anime Update an entry in the user's anime list | ||
update-manga Update an entry in the user's manga list | ||
``` |