Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lonelyevil/kook
A library for interacting with kook bot API.
https://github.com/lonelyevil/kook
bot go golang kook kookapp
Last synced: 3 months ago
JSON representation
A library for interacting with kook bot API.
- Host: GitHub
- URL: https://github.com/lonelyevil/kook
- Owner: lonelyevil
- License: isc
- Archived: true
- Created: 2021-07-07T10:26:57.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:25:28.000Z (11 months ago)
- Last Synced: 2024-05-22T13:33:29.671Z (6 months ago)
- Topics: bot, go, golang, kook, kookapp
- Language: Go
- Homepage:
- Size: 212 KB
- Stars: 27
- Watchers: 3
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Kook
A low level library for interacting with Kook bot API. Currently, it is WIP.
[![Go Reference](https://pkg.go.dev/badge/github.com/lonelyevil/kook.svg)](https://pkg.go.dev/github.com/lonelyevil/kook)
[![Go Report Card](https://goreportcard.com/badge/github.com/lonelyevil/kook)](https://goreportcard.com/report/github.com/lonelyevil/kook)
[![Server Badger](https://img.shields.io/badge/kookapp-dev--chat-informational)](https://kaihei.co/r5s1WO)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Flonelyevil%2Fkook.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Flonelyevil%2Fkook?ref=badge_shield)## Get Started
It is not recommended to use it in production until it releases `v1.0.0`.
### Installing
This assumes that you already have a working Go environment.
```go get github.com/lonelyevil/kook```
Other than the library itself, you need to install a logger and an adapter for logger.
Personally, I only implement the adapter for [phuslu/log](https://github.com/phuslu/log). So, in order to use the library, the following installation is necessary.```go get github.com/lonelyevil/kook/log_adapter/plog```
### Usage
See the examples in `examples` folder.
## Features and Roadmap
See [features.md](features.md).
## Documentation
WIP.
For code that are not well commented, users could refer to [bwmarrin/discordgo](https://github.com/bwmarrin/discordgo) as this library is heavily influenced by it.
## Versioning
I could not guarantee a stable API until the release of `1.0.0`.
Before that, any break change would happen.
After that, It would follow [semantic versioning](https://semver.org/).## Contributing
Currently, this repo does not accept any large PRs, as the API may be broken at any time when I want.
Bug reports and code suggestions are greatly welcomed.## LICENSE
kook is a free and open source software library distributed under the terms of [ISC License](LICENSE).
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Flonelyevil%2Fkook.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Flonelyevil%2Fkook?ref=badge_large)
## Special Thanks To:
Built using IntelliJ IDEA