aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2022-02-17 15:22:22 +0000
committerGitHub <noreply@github.com>2022-02-17 15:22:22 +0000
commitda175da76c97a479a6e63b01bd4fc1fe273a693a (patch)
tree23b3e93622ada21fb0f45d841cd4e476f1e4d1a4 /README.md
parentb1ad199abaf9684b120d73acb04dddc213c87af8 (diff)
Update README
finally added all the important info!!!
Diffstat (limited to 'README.md')
-rw-r--r--README.md53
1 files changed, 51 insertions, 2 deletions
diff --git a/README.md b/README.md
index f28e4d4..9f42068 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,51 @@
-# mal2go
-MyAnimeList V2 API wrapper for Go
+# MAL2Go
+MyAnimeList V2 API wrapper for GoLang
+
+## Installation
+In a terminal, run
+```
+go get github.com/MikunoNaka/MAL2Go
+```
+Go needs to be installed and `$GOPATH` should be set up
+
+## Package Structure
+[anime](anime) package
+contains all the functionality for pulling data about anime from the API.
+
+[user](user) package
+has the functionality for getting user data and updating information.
+
+[user/animelist](user/anime) package
+has the functionality to update the authenticated user's anime list status, etc.
+
+[util](util) package has some code used
+by multiple packages that I think don't belong particularly to one single package
+
+[errhandlers](errhandlers) package
+contains the validators and error handlers mainly to be used by MAL2Go.
+
+## Authentication
+MyAnimeList V2 API uses OAuth to authenticate a user.
+
+Some useful links about authenticating with MyAnimeList:
+- A Client ID can be generated [here](https://myanimelist.net/apiconfig).
+This is needed to create an auth token for use with your program.
+
+- Official documentation for authenticating with MyAnimeList is [here](https://myanimelist.net/apiconfig/references/authorization)
+
+- An awesome guide to simplify this process by [ZeroCrystal](https://myanimelist.net/blog.php?eid=835707).
+
+- An easy but not the best (still really good for getting started quickly/testing)
+way to generate a token is to use [my script](https://github.com/MikunoNaka/mal-authtoken-generator).
+
+Each package has a Client struct that needs an `AuthToken: string` among other (optional)
+values that don't do anything yet.
+
+**NOTE:** I'm new to OAuth and might make changes to the Client struct in each package.
+
+## Licence
+Licenced under GNU General Public Licence
+
+GNU GPL License: [LICENSE](LICENSE)
+
+Copyright (c) 2022 Vidhu Kant Sharma