2024-12-31 02:34:02 +05:00
|
|
|
# Sparkle
|
2024-12-31 02:46:47 +05:00
|
|
|
Library for creating discord bots
|
2025-01-14 16:23:23 +05:00
|
|
|
# ToDo
|
|
|
|
- [x] Websocket support
|
|
|
|
- [x] Minimal discord api support
|
|
|
|
- [x] Selfbot support
|
|
|
|
- [x] Easy to use
|
2025-01-14 16:23:38 +05:00
|
|
|
- [ ] Support json extraction from server response
|
|
|
|
- [ ] Optimised for high loads
|
|
|
|
- [ ] Full api support
|
|
|
|
- [ ] Fixes for known bugs
|
2025-01-14 23:24:40 +05:00
|
|
|
- [ ] Windows support
|
|
|
|
- [ ] Sharding
|
2024-12-31 02:34:02 +05:00
|
|
|
# How to build
|
2025-01-06 22:00:02 +05:00
|
|
|
```sh
|
2025-01-01 13:21:48 +05:00
|
|
|
git clone http://applejack.ygg/fluttershy/sparkle.git
|
2024-12-31 06:10:27 +05:00
|
|
|
mkdir sparkle/build && cd sparkle/build
|
2025-01-14 23:09:03 +05:00
|
|
|
cmake .. && make -j$(nproc)
|
2025-01-14 23:09:34 +05:00
|
|
|
./sparkle -t <BOT_TOKEN>
|
2024-12-31 02:34:02 +05:00
|
|
|
```
|