mirror of
https://gitlab.com/ceda_ei/Quadnite-Bot
synced 2026-06-18 02:50:05 +02:00
Compare commits
48 Commits
node_port
...
7bbc82d175
| Author | SHA1 | Date | |
|---|---|---|---|
| 7bbc82d175 | |||
| 1ad42e6068 | |||
| c41ab294e9 | |||
| af03a53e21 | |||
| 58af21ca6d | |||
| 6405251ae1 | |||
| bdd3a11cec | |||
| 7cf9689420 | |||
| e3a5f1a67b | |||
| cd374090f2 | |||
|
|
8274ab0980 | ||
| 80a0dbd2d3 | |||
| 41ae943913 | |||
| bdf52331b1 | |||
| 5ededd535f | |||
| 21871c9cd6 | |||
| c01ad5109d | |||
| 5f7f1ced01 | |||
| d844ac8455 | |||
| 69448a1052 | |||
| f44d83c89a | |||
| ae21f68cc7 | |||
| 4b8aecf28a | |||
| f1740ce4c0 | |||
| 5ac1c1e4a6 | |||
| ce9611f079 | |||
| 7527fb6a1a | |||
| 159ca9e87d | |||
| 4878274656 | |||
| f0a918f77e | |||
| 463d9c254b | |||
| fde5830309 | |||
| 71e6f6927d | |||
| 6da0e12171 | |||
| b0eff87e72 | |||
| 9024ec65f9 | |||
| 53dda834f9 | |||
| af56ffbbb3 | |||
| 382579ba3f | |||
| 8f16112b2e | |||
| 72e69b7ac1 | |||
| 3ed015b584 | |||
| 2914321b3c | |||
| 375f032b97 | |||
| dcf77e56a3 | |||
| e4311467b3 | |||
| bd2f38679c | |||
| 59e8db799a |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1 +1,4 @@
|
|||||||
node_modules
|
node_modules
|
||||||
|
data/*
|
||||||
|
!data/.gitkeep
|
||||||
|
__pycache__/
|
||||||
|
|||||||
1
.python-version
Normal file
1
.python-version
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.13
|
||||||
18
README.md
18
README.md
@@ -1,2 +1,18 @@
|
|||||||
# Quadnite-Bot
|
# Quadnite-Bot
|
||||||
Source code for @quadnite_bot
|
|
||||||
|
Source code for [@quadnite\_bot](https://t.me/quadnite_bot)
|
||||||
|
|
||||||
|
## Running your own instance
|
||||||
|
|
||||||
|
Quadnite bot depends on [Ugoki](https://gitlab.com/ceda_ei/ugoki) for providing
|
||||||
|
roleplay gifs. Once you have an instance of Ugoki (and optionally
|
||||||
|
[Ugoki Frontend](https://gitlab.com/ceda_ei/ugoki-frontend)) running:
|
||||||
|
|
||||||
|
- Clone this repo
|
||||||
|
- `npm install`
|
||||||
|
- `export BOT_API_KEY="your-token-for-bot"`
|
||||||
|
- `export FEEDBACK_ID="chat-id-where-feedback-is-forwarded-to"`
|
||||||
|
- `export UGOKI_ROOT="https://root.of.ugoki.api/server/"`
|
||||||
|
- `export RATE_TIMEFRAME=5000 # rate limit time interval in milliseconds`
|
||||||
|
- `export RATE_LIMIT=5 # number of requests allowed in the timeframe`
|
||||||
|
- `npm start`
|
||||||
|
|||||||
17
bot.js
17
bot.js
@@ -1,10 +1,19 @@
|
|||||||
const Telegraf = require("telegraf");
|
const { Telegraf } = require("telegraf");
|
||||||
const { BOT_API_KEY, FEEDBACK_ID } = process.env;
|
const { BOT_API_KEY, FEEDBACK_ID, UGOKI_ROOT, RATE_TIMEFRAME, RATE_LIMIT } = process.env;
|
||||||
const fs = require("fs").promises;
|
const fs = require("fs").promises;
|
||||||
const commands = require("./commands");
|
const commands = require("./commands");
|
||||||
const axios = require("axios");
|
const axios = require("axios");
|
||||||
|
const roleplay = require("./static/roleplay.json");
|
||||||
|
const { limit } = require("@grammyjs/ratelimiter");
|
||||||
|
|
||||||
const bot = new Telegraf(BOT_API_KEY);
|
const bot = new Telegraf(BOT_API_KEY);
|
||||||
|
bot.catch((err) => console.log(err));
|
||||||
|
bot.use(limit({
|
||||||
|
// default config: 1 message per 1 second
|
||||||
|
timeFrame: RATE_TIMEFRAME ?? 1000,
|
||||||
|
limit: RATE_LIMIT ?? 1,
|
||||||
|
keyGenerator: (ctx) => ctx.chat?.id.toString() ?? ctx.from?.id.toString(),
|
||||||
|
}))
|
||||||
|
|
||||||
const data = [
|
const data = [
|
||||||
"questions",
|
"questions",
|
||||||
@@ -13,12 +22,12 @@ const data = [
|
|||||||
"commands_list",
|
"commands_list",
|
||||||
"words"
|
"words"
|
||||||
].map(file =>
|
].map(file =>
|
||||||
fs.readFile(file + ".txt", "utf-8")
|
fs.readFile("static/" + file + ".txt", "utf-8")
|
||||||
.then(list =>
|
.then(list =>
|
||||||
list.split("\n")));
|
list.split("\n")));
|
||||||
|
|
||||||
Promise.all(data)
|
Promise.all(data)
|
||||||
.then(data =>
|
.then(data =>
|
||||||
commands(bot, data, FEEDBACK_ID, axios));
|
commands(bot, [...data, roleplay], FEEDBACK_ID, BOT_API_KEY, UGOKI_ROOT, axios));
|
||||||
|
|
||||||
bot.launch();
|
bot.launch();
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ module.exports = () => (ctx) => {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
if (ctx.message.reply_to_message)
|
if (ctx.message.reply_to_message && !ctx.message.reply_to_message.is_topic_message)
|
||||||
return absurdify(ctx.message.reply_to_message.text);
|
return absurdify(ctx.message.reply_to_message.text);
|
||||||
else
|
else
|
||||||
return "Need text to absurdify. Send /absurdify text or reply to a"
|
return "Need text to absurdify. Send /absurdify text or reply to a"
|
||||||
|
|||||||
31
commands/dice.js
Normal file
31
commands/dice.js
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
function diceRoll(side) {
|
||||||
|
|
||||||
|
return Math.ceil(Math.random() * side);
|
||||||
|
|
||||||
|
}
|
||||||
|
module.exports = () => async (ctx) => {
|
||||||
|
|
||||||
|
const numDice = parseInt(ctx.match[1] || "1");
|
||||||
|
const diceSides = parseInt(ctx.match[2]);
|
||||||
|
const rolls = Array(numDice)
|
||||||
|
.fill(0)
|
||||||
|
.map(() => diceRoll(diceSides));
|
||||||
|
const total = rolls.reduce((acc, curr) => acc + curr, 0);
|
||||||
|
const message = rolls
|
||||||
|
.map((i) => `_You roll a_ *D${diceSides}* _and get a_ *${i}*`)
|
||||||
|
.join("\n");
|
||||||
|
let totalMessage = "";
|
||||||
|
if (numDice > 1 || ctx.match[4])
|
||||||
|
totalMessage = `*Total:* ${total}`;
|
||||||
|
|
||||||
|
if (ctx.match[4]) {
|
||||||
|
|
||||||
|
const modifier = parseInt(ctx.match[6]);
|
||||||
|
const sign = ctx.match[5];
|
||||||
|
if (sign === "+") totalMessage += ` + ${modifier} = ${total + modifier}`;
|
||||||
|
else totalMessage += ` - ${modifier} = ${total - modifier}`;
|
||||||
|
|
||||||
|
}
|
||||||
|
ctx.reply(message + "\n\n" + totalMessage, { parse_mode: "Markdown" });
|
||||||
|
|
||||||
|
};
|
||||||
48
commands/expand.js
Normal file
48
commands/expand.js
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
function expand(words, text) {
|
||||||
|
|
||||||
|
const letters = text.trim().toLowerCase().split("");
|
||||||
|
// Build a dictionary with lowercase letters as keys
|
||||||
|
const dict = {};
|
||||||
|
words.forEach(word => {
|
||||||
|
|
||||||
|
if (word == "")
|
||||||
|
return;
|
||||||
|
const initial = word.split("")[0].toLowerCase();
|
||||||
|
if (initial in dict)
|
||||||
|
dict[initial].push(word);
|
||||||
|
else
|
||||||
|
dict[initial] = [word];
|
||||||
|
|
||||||
|
});
|
||||||
|
return letters.map((letter) => {
|
||||||
|
|
||||||
|
if (!(letter.toLowerCase() in dict))
|
||||||
|
return letter;
|
||||||
|
const wordsWithLetter = dict[letter.toLowerCase()];
|
||||||
|
const word = wordsWithLetter[Math.floor(Math.random() * wordsWithLetter.length)];
|
||||||
|
return word;
|
||||||
|
|
||||||
|
}).reduce((acc, cur) => acc + " " + cur).replace(/\s{2,}/g, " ");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module.exports = (words = []) => (ctx) => {
|
||||||
|
|
||||||
|
words = words.filter(i => ! i.match(/'s$/));
|
||||||
|
const message = ctx.message.text.replace(/^[^ ]+/, "");
|
||||||
|
if (message) {
|
||||||
|
|
||||||
|
return expand(words, message);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
if (ctx.message.reply_to_message && !ctx.message.reply_to_message.is_topic_message)
|
||||||
|
return expand(words, ctx.message.reply_to_message.text);
|
||||||
|
else
|
||||||
|
return "Need text to expand. Send /expand text or reply to a "
|
||||||
|
+ "message with /expand";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
@@ -1,14 +1,27 @@
|
|||||||
module.exports = (feedback_id) => (ctx) => {
|
module.exports = (bot, feedback_id) => (ctx) => {
|
||||||
|
|
||||||
const message = ctx.message.text.replace(/^[^ ]+/, "");
|
const message = ctx.message.text.replace(/^[^ ]+/, "");
|
||||||
if (message) {
|
if (message) {
|
||||||
|
|
||||||
ctx.forwardMessage(feedback_id);
|
const from = ctx.message.from;
|
||||||
return "Thanks for the feedback";
|
let contactable = "The developer might contact you regarding your feedback.";
|
||||||
|
let message;
|
||||||
|
if (from.username) {
|
||||||
|
|
||||||
|
message = `Feedback from: @${from.username}`;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
return "To send feedback type in /feedback followed by the feedback";
|
contactable = "The developer might not be able to contact you due to lack of your username.";
|
||||||
|
message = `Feedback from User ${from.id}`;
|
||||||
|
|
||||||
|
}
|
||||||
|
bot.telegram.sendMessage(feedback_id, `${message} ${ctx.message.text}`).catch(console.log);
|
||||||
|
return `Thanks for the feedback! ${contactable}`;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
return "To send feedback type in /feedback followed by the feedback. Note that developers may contact you regarding the feedback.";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,9 +7,12 @@ const absurdify = require("./absurdify");
|
|||||||
const feedback = require("./feedback");
|
const feedback = require("./feedback");
|
||||||
const media_wiki = require("./media_wiki");
|
const media_wiki = require("./media_wiki");
|
||||||
const info = require("./info");
|
const info = require("./info");
|
||||||
|
const expand = require("./expand");
|
||||||
|
const roleplay = require("./roleplay");
|
||||||
|
const suggest = require("./suggest");
|
||||||
|
const dice = require("./dice");
|
||||||
|
|
||||||
module.exports = (bot, [ questions, kys, insults, commands_list, words ],
|
module.exports = (bot, [ questions, kys, insults, commands_list, words, roleplay_data ], feedback_id, apiToken, ugokiRoot, axios) => {
|
||||||
feedback_id, axios) => {
|
|
||||||
|
|
||||||
bot.command("question", (ctx) => ctx.reply(random(questions)()));
|
bot.command("question", (ctx) => ctx.reply(random(questions)()));
|
||||||
bot.command("word", (ctx) => ctx.reply(random(words)()));
|
bot.command("word", (ctx) => ctx.reply(random(words)()));
|
||||||
@@ -18,7 +21,7 @@ module.exports = (bot, [ questions, kys, insults, commands_list, words ],
|
|||||||
.then(bot_user => {
|
.then(bot_user => {
|
||||||
|
|
||||||
const default_text = (command, text) => `Do you want to ${text} `
|
const default_text = (command, text) => `Do you want to ${text} `
|
||||||
+ `yourself?\nIf no, reply to someone with /${command} to kill`
|
+ `yourself?\nIf no, reply to someone with /${command} to ${command}`
|
||||||
+ ` them or run /${command} username/name.\nYou can suggest `
|
+ ` them or run /${command} username/name.\nYou can suggest `
|
||||||
+ `more /${command} replies using /feedback`;
|
+ `more /${command} replies using /feedback`;
|
||||||
|
|
||||||
@@ -32,7 +35,7 @@ module.exports = (bot, [ questions, kys, insults, commands_list, words ],
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
bot.command("commands", (ctx) => ctx.reply(commands_list.join("\n")));
|
bot.command("commands", (ctx) => ctx.reply(commands_list.join("\n"), {parse_mode: "html"}));
|
||||||
bot.command("is", (ctx) => ctx.reply(is(random)(ctx)));
|
bot.command("is", (ctx) => ctx.reply(is(random)(ctx)));
|
||||||
bot.command("are", (ctx) => ctx.reply(is(random)(ctx)));
|
bot.command("are", (ctx) => ctx.reply(is(random)(ctx)));
|
||||||
bot.command("can", (ctx) => ctx.reply(is(random)(ctx)));
|
bot.command("can", (ctx) => ctx.reply(is(random)(ctx)));
|
||||||
@@ -52,7 +55,7 @@ module.exports = (bot, [ questions, kys, insults, commands_list, words ],
|
|||||||
"Markdown"}));
|
"Markdown"}));
|
||||||
bot.command("weebify", (ctx) => ctx.reply(weebify()(ctx)));
|
bot.command("weebify", (ctx) => ctx.reply(weebify()(ctx)));
|
||||||
bot.command("absurdify", (ctx) => ctx.reply(absurdify()(ctx)));
|
bot.command("absurdify", (ctx) => ctx.reply(absurdify()(ctx)));
|
||||||
bot.command("feedback", (ctx) => ctx.reply(feedback(feedback_id)(ctx)));
|
bot.command("feedback", (ctx) => ctx.reply(feedback(bot, feedback_id)(ctx)));
|
||||||
bot.command("wiki", (ctx) => media_wiki(axios,
|
bot.command("wiki", (ctx) => media_wiki(axios,
|
||||||
"https://en.wikipedia.org/w/api.php")(ctx).then(x => ctx.reply(x,
|
"https://en.wikipedia.org/w/api.php")(ctx).then(x => ctx.reply(x,
|
||||||
{parse_mode: "HTML"})));
|
{parse_mode: "HTML"})));
|
||||||
@@ -60,5 +63,42 @@ module.exports = (bot, [ questions, kys, insults, commands_list, words ],
|
|||||||
"https://wiki.archlinux.org/api.php")(ctx).then(x => ctx.reply(x,
|
"https://wiki.archlinux.org/api.php")(ctx).then(x => ctx.reply(x,
|
||||||
{parse_mode: "HTML"})));
|
{parse_mode: "HTML"})));
|
||||||
bot.command("info", (ctx) => ctx.reply(info()(ctx), {parse_mode: "Markdown"}));
|
bot.command("info", (ctx) => ctx.reply(info()(ctx), {parse_mode: "Markdown"}));
|
||||||
|
bot.command("expand", (ctx) => ctx.reply(expand(words)(ctx)));
|
||||||
|
bot.command("start", (ctx) => ctx.reply("Hi, I am Quadnite. If you are "
|
||||||
|
+ "chatting with me in private, you are most likely doing it wrong. "
|
||||||
|
+ "Add me to a group for fun. To give feedback, use /feedback"));
|
||||||
|
bot.hears(/^\/?(\d*)d(\d+)(@\w+)?(\s*([-+])\s*(\d+))?$/i, dice());
|
||||||
|
|
||||||
|
function getGetGif(command) {
|
||||||
|
|
||||||
|
const alias = roleplay_data[command].alias;
|
||||||
|
if (alias)
|
||||||
|
return getGetGif(alias);
|
||||||
|
|
||||||
|
return () => axios.get(
|
||||||
|
`category/${command}/gif`,
|
||||||
|
{
|
||||||
|
baseURL: ugokiRoot
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function getForms(name) {
|
||||||
|
|
||||||
|
if (roleplay_data[name].forms)
|
||||||
|
return roleplay_data[name].forms;
|
||||||
|
return getForms(roleplay_data[name].alias);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add all roleplay commands
|
||||||
|
Object.keys(roleplay_data).map(command =>
|
||||||
|
bot.command(command,
|
||||||
|
(ctx) => roleplay(getForms(command), getGetGif(command))(ctx)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
bot.command("suggest", (ctx) => suggest(axios, apiToken, ugokiRoot)(ctx));
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ module.exports = () => (ctx) => {
|
|||||||
text += `Message ID: \`${msg.message_id}\`\n`;
|
text += `Message ID: \`${msg.message_id}\`\n`;
|
||||||
text += `Chat ID: \`${msg.chat.id}\`\n`;
|
text += `Chat ID: \`${msg.chat.id}\`\n`;
|
||||||
text += `User ID: \`${msg.from.id}\`\n`;
|
text += `User ID: \`${msg.from.id}\`\n`;
|
||||||
if (msg.reply_to_message) {
|
if (ctx.message.reply_to_message && !ctx.message.reply_to_message.is_topic_message) {
|
||||||
|
|
||||||
const reply = msg.reply_to_message;
|
const reply = msg.reply_to_message;
|
||||||
text += "\n*Reply to*\n";
|
text += "\n*Reply to*\n";
|
||||||
@@ -24,7 +24,7 @@ module.exports = () => (ctx) => {
|
|||||||
text += "Channel ID: ";
|
text += "Channel ID: ";
|
||||||
text += `\`${forward.id}\`\n`;
|
text += `\`${forward.id}\`\n`;
|
||||||
text += "Message Date: `";
|
text += "Message Date: `";
|
||||||
const date = new Date(reply.forward_date);
|
const date = new Date(reply.forward_date*1000);
|
||||||
text += date.toUTCString();
|
text += date.toUTCString();
|
||||||
text += "`";
|
text += "`";
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
module.exports = (random, kys, default_text, bot_text, excluded_names) => (ctx) => {
|
module.exports = (random, kys, default_text, bot_text, excluded_names) => (ctx) => {
|
||||||
|
|
||||||
if (ctx.message.reply_to_message) {
|
if (ctx.message.reply_to_message && !ctx.message.reply_to_message.is_topic_message) {
|
||||||
|
|
||||||
const { from } = ctx.message.reply_to_message;
|
const { from } = ctx.message.reply_to_message;
|
||||||
const name = from.username ? "@" + from.username : from.firstName;
|
const name = from.username ? "@" + from.username : from.first_name;
|
||||||
if (name == excluded_names[0])
|
if (name == excluded_names[0])
|
||||||
return bot_text;
|
return bot_text;
|
||||||
return random(kys)().replace(/##name##/g, name);
|
return random(kys)().replace(/##name##/g, name);
|
||||||
@@ -13,7 +13,7 @@ module.exports = (random, kys, default_text, bot_text, excluded_names) => (ctx)
|
|||||||
const text_array = ctx.message.text.split(" ");
|
const text_array = ctx.message.text.split(" ");
|
||||||
if (text_array.length > 1) {
|
if (text_array.length > 1) {
|
||||||
|
|
||||||
const name = text_array[1];
|
const name = text_array.slice(1).reduce((i, j) => i + " " + j).trim();
|
||||||
if (excluded_names.includes(name)
|
if (excluded_names.includes(name)
|
||||||
|| excluded_names.includes("@" + name))
|
|| excluded_names.includes("@" + name))
|
||||||
return bot_text;
|
return bot_text;
|
||||||
|
|||||||
44
commands/roleplay.js
Normal file
44
commands/roleplay.js
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
function joinUsers(users) {
|
||||||
|
|
||||||
|
if (users.length == 1)
|
||||||
|
return users[0];
|
||||||
|
return users.slice(0, users.length - 1).join(", ")
|
||||||
|
+ ` and ${users[users.length - 1]}`;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module.exports = (forms, getGif) => (ctx) => {
|
||||||
|
|
||||||
|
const message = ctx.message.text.replace(/^[^ ]+\s*/, "")
|
||||||
|
.match(/^((@\w+(\s+|$))*)(.*)/);
|
||||||
|
const users = message[1].trim().split(" ").filter(i => i.length);
|
||||||
|
const rtm = ctx.message.reply_to_message;
|
||||||
|
if (rtm && !rtm.is_topic_message)
|
||||||
|
users.push(rtm.from.username ? "@" + rtm.from.username
|
||||||
|
: rtm.from.first_name);
|
||||||
|
const reason = message[4];
|
||||||
|
let reply = "";
|
||||||
|
const from = ctx.message.from;
|
||||||
|
const user = from.username ? "@" + from.username : from.first_name;
|
||||||
|
if (users.length > 0 && reason.length > 0)
|
||||||
|
reply = forms.both
|
||||||
|
.replace("{}", user)
|
||||||
|
.replace("{}", joinUsers(users))
|
||||||
|
.replace("{}", reason);
|
||||||
|
else if (users.length > 0)
|
||||||
|
reply = forms.others
|
||||||
|
.replace("{}", user)
|
||||||
|
.replace("{}", joinUsers(users));
|
||||||
|
else if (reason.length > 0)
|
||||||
|
reply = forms.reason
|
||||||
|
.replace("{}", user)
|
||||||
|
.replace("{}", reason);
|
||||||
|
else
|
||||||
|
reply = forms.none
|
||||||
|
.replace("{}", user);
|
||||||
|
|
||||||
|
return getGif()
|
||||||
|
.then(gif => ctx.replyWithAnimation(gif.data.url, {caption: reply}));
|
||||||
|
|
||||||
|
};
|
||||||
84
commands/suggest.js
Normal file
84
commands/suggest.js
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
const ffmpeg = require("fluent-ffmpeg");
|
||||||
|
const fs = require("fs");
|
||||||
|
const FormData = require("form-data");
|
||||||
|
|
||||||
|
function ugokiUpload(axios, ugokiRoot, ctx, category, path) {
|
||||||
|
|
||||||
|
const form = new FormData();
|
||||||
|
form.append("file", fs.createReadStream(path));
|
||||||
|
return axios.post(`new_suggestion/${category}`, form,
|
||||||
|
{ headers: form.getHeaders(), baseURL: ugokiRoot })
|
||||||
|
.then(() => {
|
||||||
|
|
||||||
|
ctx.reply("Suggestion added.");
|
||||||
|
fs.unlink(path, () => {});
|
||||||
|
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
|
||||||
|
console.error(err);
|
||||||
|
if (err.response && err.response.status == 404)
|
||||||
|
ctx.reply("Category doesn't exist");
|
||||||
|
else if (err.response && err.response.status == 409)
|
||||||
|
ctx.reply("Already suggested / added.");
|
||||||
|
else
|
||||||
|
ctx.reply("No clue what the hell happened but adding suggestion failed.");
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = (axios, apiToken, ugokiRoot) => (ctx) => {
|
||||||
|
|
||||||
|
const category = ctx.message.text.split(" ")[1];
|
||||||
|
const reply = ctx.message.reply_to_message;
|
||||||
|
|
||||||
|
if (category && reply && reply.animation) {
|
||||||
|
|
||||||
|
return ctx.telegram.getFile(reply.animation.file_id)
|
||||||
|
.then(resp => {
|
||||||
|
|
||||||
|
return axios({
|
||||||
|
method: "get",
|
||||||
|
url: `https://api.telegram.org/file/bot${apiToken}/${resp.file_path}`,
|
||||||
|
responseType: "stream"
|
||||||
|
})
|
||||||
|
.then(async (response) => {
|
||||||
|
|
||||||
|
let stream = response.data;
|
||||||
|
let path = `data/${resp.file_unique_id}`;
|
||||||
|
const writer = fs.createWriteStream(path);
|
||||||
|
if (!resp.file_path.match(/\.gif$/)) {
|
||||||
|
|
||||||
|
await stream.pipe(writer);
|
||||||
|
stream = ffmpeg(path)
|
||||||
|
.on("error", function () {
|
||||||
|
|
||||||
|
fs.unlink(path, () => {});
|
||||||
|
ctx.reply("Something went wrong processing the gif");
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
.on("end", function () {
|
||||||
|
|
||||||
|
fs.unlink(path, () => {});
|
||||||
|
ugokiUpload(axios, ugokiRoot, ctx, category, path + ".gif");
|
||||||
|
|
||||||
|
})
|
||||||
|
.output(path + ".gif")
|
||||||
|
.outputFormat("gif")
|
||||||
|
.run();
|
||||||
|
|
||||||
|
} else
|
||||||
|
ugokiUpload(axios, ugokiRoot, category, ctx, path);
|
||||||
|
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
} else
|
||||||
|
ctx.reply("Reply to a gif with /suggest [category] "
|
||||||
|
+ "to suggest it to be used for [category]");
|
||||||
|
|
||||||
|
};
|
||||||
@@ -44,7 +44,7 @@ module.exports = () => (ctx) => {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
if (ctx.message.reply_to_message)
|
if (ctx.message.reply_to_message && !ctx.message.reply_to_message.is_topic_message)
|
||||||
return weebify(ctx.message.reply_to_message.text);
|
return weebify(ctx.message.reply_to_message.text);
|
||||||
else
|
else
|
||||||
return "Need text to weebify. Send /weebify text or reply to a "
|
return "Need text to weebify. Send /weebify text or reply to a "
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
question - Get a random question
|
|
||||||
word - Get a random word
|
|
||||||
words - Get n random words
|
|
||||||
kys - Kill yourself
|
|
||||||
coin - Tosses a coin
|
|
||||||
wiki - Search Wikipedia
|
|
||||||
arch_wiki - Search the Arch wiki
|
|
||||||
insult - As expected, insults
|
|
||||||
weebify - Weebifies the given text
|
|
||||||
absurdify - mAke tExT aBSUrd
|
|
||||||
is - Is <your question>
|
|
||||||
are - Are <your question>
|
|
||||||
can - Can <your question>
|
|
||||||
will - will <your question>
|
|
||||||
shall - shall <your question>
|
|
||||||
was - Was <your question>
|
|
||||||
do - Do <your question>
|
|
||||||
does - Does <your question>
|
|
||||||
did - Did <your question>
|
|
||||||
should - Should <your question>
|
|
||||||
help - Need help? Go here
|
|
||||||
feedback - Send feedback, suggestion for kys, insult text
|
|
||||||
rate - Rate me on TGDR
|
|
||||||
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal file
499
package-lock.json
generated
Normal file
499
package-lock.json
generated
Normal file
@@ -0,0 +1,499 @@
|
|||||||
|
{
|
||||||
|
"name": "quadnite-bot",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"lockfileVersion": 2,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {
|
||||||
|
"": {
|
||||||
|
"name": "quadnite-bot",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"license": "GPL-3.0",
|
||||||
|
"dependencies": {
|
||||||
|
"@grammyjs/ratelimiter": "^1.2.0",
|
||||||
|
"axios": "^0.21.0",
|
||||||
|
"fluent-ffmpeg": "^2.1.2",
|
||||||
|
"form-data": "^4.0.0",
|
||||||
|
"telegraf": "^4.15.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@grammyjs/ratelimiter": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@grammyjs/ratelimiter/-/ratelimiter-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-xBkH/ATJsuv5JgVYX9yQM9DNg75Qqjw+gh82lVsBn4j+d0DkxxC+kuy6WFoB96Cb6oifQfaBJL8CTikdYG4v0A=="
|
||||||
|
},
|
||||||
|
"node_modules/@telegraf/types": {
|
||||||
|
"version": "6.9.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@telegraf/types/-/types-6.9.1.tgz",
|
||||||
|
"integrity": "sha512-bzqwhicZq401T0e09tu8b1KvGfJObPmzKU/iKCT5V466AsAZZWQrBYQ5edbmD1VZuHLEwopoOVY5wPP4HaLtug=="
|
||||||
|
},
|
||||||
|
"node_modules/abort-controller": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
||||||
|
"dependencies": {
|
||||||
|
"event-target-shim": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6.5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/async": {
|
||||||
|
"version": "3.2.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/async/-/async-3.2.1.tgz",
|
||||||
|
"integrity": "sha512-XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg=="
|
||||||
|
},
|
||||||
|
"node_modules/asynckit": {
|
||||||
|
"version": "0.4.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||||
|
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
||||||
|
},
|
||||||
|
"node_modules/axios": {
|
||||||
|
"version": "0.21.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
|
||||||
|
"integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
|
||||||
|
"dependencies": {
|
||||||
|
"follow-redirects": "^1.14.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/buffer-alloc": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
|
||||||
|
"dependencies": {
|
||||||
|
"buffer-alloc-unsafe": "^1.1.0",
|
||||||
|
"buffer-fill": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/buffer-alloc-unsafe": {
|
||||||
|
"version": "1.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
|
||||||
|
"integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
|
||||||
|
},
|
||||||
|
"node_modules/buffer-fill": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="
|
||||||
|
},
|
||||||
|
"node_modules/combined-stream": {
|
||||||
|
"version": "1.0.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||||
|
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||||
|
"dependencies": {
|
||||||
|
"delayed-stream": "~1.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.8"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/debug": {
|
||||||
|
"version": "4.3.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
|
||||||
|
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"ms": "2.1.2"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6.0"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"supports-color": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/delayed-stream": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||||
|
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/event-target-shim": {
|
||||||
|
"version": "5.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
||||||
|
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/fluent-ffmpeg": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-2.1.2.tgz",
|
||||||
|
"integrity": "sha1-yVLeIkD4EuvaCqgAbXd27irPfXQ=",
|
||||||
|
"dependencies": {
|
||||||
|
"async": ">=0.2.9",
|
||||||
|
"which": "^1.1.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.8.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/follow-redirects": {
|
||||||
|
"version": "1.14.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz",
|
||||||
|
"integrity": "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "individual",
|
||||||
|
"url": "https://github.com/sponsors/RubenVerborgh"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">=4.0"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"debug": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/form-data": {
|
||||||
|
"version": "4.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
|
||||||
|
"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
|
||||||
|
"dependencies": {
|
||||||
|
"asynckit": "^0.4.0",
|
||||||
|
"combined-stream": "^1.0.8",
|
||||||
|
"mime-types": "^2.1.12"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/isexe": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
||||||
|
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
|
||||||
|
},
|
||||||
|
"node_modules/mime-db": {
|
||||||
|
"version": "1.49.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz",
|
||||||
|
"integrity": "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/mime-types": {
|
||||||
|
"version": "2.1.32",
|
||||||
|
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz",
|
||||||
|
"integrity": "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==",
|
||||||
|
"dependencies": {
|
||||||
|
"mime-db": "1.49.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/mri": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/ms": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
||||||
|
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
||||||
|
},
|
||||||
|
"node_modules/node-fetch": {
|
||||||
|
"version": "2.7.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
|
||||||
|
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
||||||
|
"dependencies": {
|
||||||
|
"whatwg-url": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "4.x || >=6.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"encoding": "^0.1.0"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"encoding": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/p-timeout": {
|
||||||
|
"version": "4.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-4.1.0.tgz",
|
||||||
|
"integrity": "sha512-+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/safe-compare": {
|
||||||
|
"version": "1.1.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/safe-compare/-/safe-compare-1.1.4.tgz",
|
||||||
|
"integrity": "sha512-b9wZ986HHCo/HbKrRpBJb2kqXMK9CEWIE1egeEvZsYn69ay3kdfl9nG3RyOcR+jInTDf7a86WQ1d4VJX7goSSQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"buffer-alloc": "^1.2.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/sandwich-stream": {
|
||||||
|
"version": "2.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/sandwich-stream/-/sandwich-stream-2.0.2.tgz",
|
||||||
|
"integrity": "sha512-jLYV0DORrzY3xaz/S9ydJL6Iz7essZeAfnAavsJ+zsJGZ1MOnsS52yRjU3uF3pJa/lla7+wisp//fxOwOH8SKQ==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.10"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/telegraf": {
|
||||||
|
"version": "4.15.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/telegraf/-/telegraf-4.15.3.tgz",
|
||||||
|
"integrity": "sha512-pm2ZQAisd0YlUvnq6xdymDfoQR++8wTalw0nfw7Tjy0va+V/0HaBLzM8kMNid8pbbt7GHTU29lEyA5CAAr8AqA==",
|
||||||
|
"dependencies": {
|
||||||
|
"@telegraf/types": "^6.9.1",
|
||||||
|
"abort-controller": "^3.0.0",
|
||||||
|
"debug": "^4.3.4",
|
||||||
|
"mri": "^1.2.0",
|
||||||
|
"node-fetch": "^2.6.8",
|
||||||
|
"p-timeout": "^4.1.0",
|
||||||
|
"safe-compare": "^1.1.4",
|
||||||
|
"sandwich-stream": "^2.0.2"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"telegraf": "lib/cli.mjs"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^12.20.0 || >=14.13.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tr46": {
|
||||||
|
"version": "0.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
||||||
|
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
|
||||||
|
},
|
||||||
|
"node_modules/webidl-conversions": {
|
||||||
|
"version": "3.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
||||||
|
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
|
||||||
|
},
|
||||||
|
"node_modules/whatwg-url": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
||||||
|
"dependencies": {
|
||||||
|
"tr46": "~0.0.3",
|
||||||
|
"webidl-conversions": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/which": {
|
||||||
|
"version": "1.3.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
|
||||||
|
"integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"isexe": "^2.0.0"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"which": "bin/which"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@grammyjs/ratelimiter": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@grammyjs/ratelimiter/-/ratelimiter-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-xBkH/ATJsuv5JgVYX9yQM9DNg75Qqjw+gh82lVsBn4j+d0DkxxC+kuy6WFoB96Cb6oifQfaBJL8CTikdYG4v0A=="
|
||||||
|
},
|
||||||
|
"@telegraf/types": {
|
||||||
|
"version": "6.9.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@telegraf/types/-/types-6.9.1.tgz",
|
||||||
|
"integrity": "sha512-bzqwhicZq401T0e09tu8b1KvGfJObPmzKU/iKCT5V466AsAZZWQrBYQ5edbmD1VZuHLEwopoOVY5wPP4HaLtug=="
|
||||||
|
},
|
||||||
|
"abort-controller": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
||||||
|
"requires": {
|
||||||
|
"event-target-shim": "^5.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"async": {
|
||||||
|
"version": "3.2.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/async/-/async-3.2.1.tgz",
|
||||||
|
"integrity": "sha512-XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg=="
|
||||||
|
},
|
||||||
|
"asynckit": {
|
||||||
|
"version": "0.4.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||||
|
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
||||||
|
},
|
||||||
|
"axios": {
|
||||||
|
"version": "0.21.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
|
||||||
|
"integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
|
||||||
|
"requires": {
|
||||||
|
"follow-redirects": "^1.14.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"buffer-alloc": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
|
||||||
|
"requires": {
|
||||||
|
"buffer-alloc-unsafe": "^1.1.0",
|
||||||
|
"buffer-fill": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"buffer-alloc-unsafe": {
|
||||||
|
"version": "1.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
|
||||||
|
"integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
|
||||||
|
},
|
||||||
|
"buffer-fill": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ=="
|
||||||
|
},
|
||||||
|
"combined-stream": {
|
||||||
|
"version": "1.0.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||||
|
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||||
|
"requires": {
|
||||||
|
"delayed-stream": "~1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"debug": {
|
||||||
|
"version": "4.3.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
|
||||||
|
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
|
||||||
|
"requires": {
|
||||||
|
"ms": "2.1.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"delayed-stream": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||||
|
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
|
||||||
|
},
|
||||||
|
"event-target-shim": {
|
||||||
|
"version": "5.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
||||||
|
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
|
||||||
|
},
|
||||||
|
"fluent-ffmpeg": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-2.1.2.tgz",
|
||||||
|
"integrity": "sha1-yVLeIkD4EuvaCqgAbXd27irPfXQ=",
|
||||||
|
"requires": {
|
||||||
|
"async": ">=0.2.9",
|
||||||
|
"which": "^1.1.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"follow-redirects": {
|
||||||
|
"version": "1.14.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz",
|
||||||
|
"integrity": "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g=="
|
||||||
|
},
|
||||||
|
"form-data": {
|
||||||
|
"version": "4.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
|
||||||
|
"integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
|
||||||
|
"requires": {
|
||||||
|
"asynckit": "^0.4.0",
|
||||||
|
"combined-stream": "^1.0.8",
|
||||||
|
"mime-types": "^2.1.12"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"isexe": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
||||||
|
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
|
||||||
|
},
|
||||||
|
"mime-db": {
|
||||||
|
"version": "1.49.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz",
|
||||||
|
"integrity": "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA=="
|
||||||
|
},
|
||||||
|
"mime-types": {
|
||||||
|
"version": "2.1.32",
|
||||||
|
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz",
|
||||||
|
"integrity": "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==",
|
||||||
|
"requires": {
|
||||||
|
"mime-db": "1.49.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mri": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="
|
||||||
|
},
|
||||||
|
"ms": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
||||||
|
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
||||||
|
},
|
||||||
|
"node-fetch": {
|
||||||
|
"version": "2.7.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
|
||||||
|
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
|
||||||
|
"requires": {
|
||||||
|
"whatwg-url": "^5.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"p-timeout": {
|
||||||
|
"version": "4.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-4.1.0.tgz",
|
||||||
|
"integrity": "sha512-+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw=="
|
||||||
|
},
|
||||||
|
"safe-compare": {
|
||||||
|
"version": "1.1.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/safe-compare/-/safe-compare-1.1.4.tgz",
|
||||||
|
"integrity": "sha512-b9wZ986HHCo/HbKrRpBJb2kqXMK9CEWIE1egeEvZsYn69ay3kdfl9nG3RyOcR+jInTDf7a86WQ1d4VJX7goSSQ==",
|
||||||
|
"requires": {
|
||||||
|
"buffer-alloc": "^1.2.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sandwich-stream": {
|
||||||
|
"version": "2.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/sandwich-stream/-/sandwich-stream-2.0.2.tgz",
|
||||||
|
"integrity": "sha512-jLYV0DORrzY3xaz/S9ydJL6Iz7essZeAfnAavsJ+zsJGZ1MOnsS52yRjU3uF3pJa/lla7+wisp//fxOwOH8SKQ=="
|
||||||
|
},
|
||||||
|
"telegraf": {
|
||||||
|
"version": "4.15.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/telegraf/-/telegraf-4.15.3.tgz",
|
||||||
|
"integrity": "sha512-pm2ZQAisd0YlUvnq6xdymDfoQR++8wTalw0nfw7Tjy0va+V/0HaBLzM8kMNid8pbbt7GHTU29lEyA5CAAr8AqA==",
|
||||||
|
"requires": {
|
||||||
|
"@telegraf/types": "^6.9.1",
|
||||||
|
"abort-controller": "^3.0.0",
|
||||||
|
"debug": "^4.3.4",
|
||||||
|
"mri": "^1.2.0",
|
||||||
|
"node-fetch": "^2.6.8",
|
||||||
|
"p-timeout": "^4.1.0",
|
||||||
|
"safe-compare": "^1.1.4",
|
||||||
|
"sandwich-stream": "^2.0.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tr46": {
|
||||||
|
"version": "0.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
||||||
|
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
|
||||||
|
},
|
||||||
|
"webidl-conversions": {
|
||||||
|
"version": "3.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
||||||
|
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
|
||||||
|
},
|
||||||
|
"whatwg-url": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
|
||||||
|
"requires": {
|
||||||
|
"tr46": "~0.0.3",
|
||||||
|
"webidl-conversions": "^3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"which": {
|
||||||
|
"version": "1.3.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
|
||||||
|
"integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
|
||||||
|
"requires": {
|
||||||
|
"isexe": "^2.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
11
package.json
11
package.json
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "quadnite-bot",
|
"name": "quadnite-bot",
|
||||||
"version": "1.0.0",
|
"version": "2.0.0",
|
||||||
"description": "A Telegram bot that makes chats in group more fun.",
|
"description": "A Telegram bot that makes chats in group more fun.",
|
||||||
"main": "bot.js",
|
"main": "bot.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"start": "node bot.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -22,7 +22,10 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/ceda_ei/Quadnite-Bot#readme",
|
"homepage": "https://gitlab.com/ceda_ei/Quadnite-Bot#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^0.18.0",
|
"@grammyjs/ratelimiter": "^1.2.0",
|
||||||
"telegraf": "^3.27.1"
|
"axios": "^0.21.0",
|
||||||
|
"fluent-ffmpeg": "^2.1.2",
|
||||||
|
"form-data": "^4.0.0",
|
||||||
|
"telegraf": "^4.15.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
24
pyproject.toml
Normal file
24
pyproject.toml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[project]
|
||||||
|
name = "quadnite-bot"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "Add your description here"
|
||||||
|
readme = "README.md"
|
||||||
|
authors = [
|
||||||
|
{ name = "Irene Sheen", email = "ceda_ei@webionite.com" }
|
||||||
|
]
|
||||||
|
requires-python = ">=3.13"
|
||||||
|
dependencies = [
|
||||||
|
"deltabot-cli>=8.1.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
quadnite-bot = "quadnite_bot:main"
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["uv_build>=0.11.7,<0.12.0"]
|
||||||
|
build-backend = "uv_build"
|
||||||
|
|
||||||
|
[dependency-groups]
|
||||||
|
dev = [
|
||||||
|
"ipdb>=0.13.13",
|
||||||
|
]
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
dependencies:
|
|
||||||
axios: 0.18.0
|
|
||||||
telegraf: 3.27.1
|
|
||||||
packages:
|
|
||||||
/@types/node/10.12.24:
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-GWWbvt+z9G5otRBW8rssOFgRY87J9N/qbhqfjMZ+gUuL6zoL+Hm6gP/8qQBG4jjimqdaNLCehcVapZ/Fs2WjCQ==
|
|
||||||
/axios/0.18.0:
|
|
||||||
dependencies:
|
|
||||||
follow-redirects: 1.6.1
|
|
||||||
is-buffer: 1.1.6
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI=
|
|
||||||
/debug/3.1.0:
|
|
||||||
dependencies:
|
|
||||||
ms: 2.0.0
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
|
|
||||||
/debug/4.1.1:
|
|
||||||
dependencies:
|
|
||||||
ms: 2.1.1
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
|
|
||||||
/follow-redirects/1.6.1:
|
|
||||||
dependencies:
|
|
||||||
debug: 3.1.0
|
|
||||||
dev: false
|
|
||||||
engines:
|
|
||||||
node: '>=4.0'
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-t2JCjbzxQpWvbhts3l6SH1DKzSrx8a+SsaVf4h6bG4kOXUuPYS/kg2Lr4gQSb7eemaHqJkOThF1BGyjlUkO1GQ==
|
|
||||||
/is-buffer/1.1.6:
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
|
|
||||||
/ms/2.0.0:
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
|
|
||||||
/ms/2.1.1:
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
|
|
||||||
/node-fetch/2.3.0:
|
|
||||||
dev: false
|
|
||||||
engines:
|
|
||||||
node: 4.x || >=6.0.0
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==
|
|
||||||
/sandwich-stream/2.0.2:
|
|
||||||
dev: false
|
|
||||||
engines:
|
|
||||||
node: '>= 0.10'
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-jLYV0DORrzY3xaz/S9ydJL6Iz7essZeAfnAavsJ+zsJGZ1MOnsS52yRjU3uF3pJa/lla7+wisp//fxOwOH8SKQ==
|
|
||||||
/telegraf/3.27.1:
|
|
||||||
dependencies:
|
|
||||||
'@types/node': 10.12.24
|
|
||||||
debug: 4.1.1
|
|
||||||
node-fetch: 2.3.0
|
|
||||||
sandwich-stream: 2.0.2
|
|
||||||
telegram-typings: 3.6.1
|
|
||||||
dev: false
|
|
||||||
engines:
|
|
||||||
node: '>=6.2.0'
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-RQUnuNAEEWcLhRap81qwGUUqAy1KcvqANnA0G3pzZqFkhMe6LrTk5lVi9tdOaF0Ud/yOx5fdx0rNPYfiB27Z+w==
|
|
||||||
/telegram-typings/3.6.1:
|
|
||||||
dev: false
|
|
||||||
resolution:
|
|
||||||
integrity: sha512-njVv1EAhIZnmQVLocZEADYUyqA1WIXuVcDYlsp+mXua/XB0pxx+PKtMSPeZ/EE4wPWTw9h/hA9ASTT6yQelkiw==
|
|
||||||
registry: 'https://registry.npmjs.org/'
|
|
||||||
shrinkwrapMinorVersion: 9
|
|
||||||
shrinkwrapVersion: 3
|
|
||||||
specifiers:
|
|
||||||
axios: ^0.18.0
|
|
||||||
telegraf: ^3.27.1
|
|
||||||
3
src/quadnite_bot/__init__.py
Normal file
3
src/quadnite_bot/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
from quadnite_bot.__main__ import main
|
||||||
|
|
||||||
|
__all__ = ["main"]
|
||||||
15
src/quadnite_bot/__main__.py
Normal file
15
src/quadnite_bot/__main__.py
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import logging
|
||||||
|
|
||||||
|
from deltabot_cli import BotCli
|
||||||
|
from deltachat2 import events
|
||||||
|
|
||||||
|
from quadnite_bot.command_registry import dispatcher
|
||||||
|
|
||||||
|
def main():
|
||||||
|
cli = BotCli("quadnite-bot")
|
||||||
|
|
||||||
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
|
||||||
|
cli.on(events.NewMessage)(dispatcher)
|
||||||
|
|
||||||
|
cli.start()
|
||||||
77
src/quadnite_bot/command.py
Normal file
77
src/quadnite_bot/command.py
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
from abc import ABC, abstractmethod
|
||||||
|
import logging
|
||||||
|
import re
|
||||||
|
from deltachat2 import Bot, MsgData, NewMsgEvent
|
||||||
|
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
class Context:
|
||||||
|
match: re.Match[str] | None
|
||||||
|
params: str
|
||||||
|
args: list[str]
|
||||||
|
|
||||||
|
def __init__(self, bot: Bot, accid: int, event: NewMsgEvent, command: "Command") -> None:
|
||||||
|
self.bot = bot
|
||||||
|
self.accid = accid
|
||||||
|
self.event = event
|
||||||
|
if command.command:
|
||||||
|
self.params = re.sub(fr"^/{command.command}\s+", "", event.msg.text)
|
||||||
|
else:
|
||||||
|
self.params = event.msg.text
|
||||||
|
self.args = re.split(r"\s+", self.params)
|
||||||
|
self.match = None
|
||||||
|
if command.regex:
|
||||||
|
self.match = command.regex.search(event.msg.text)
|
||||||
|
|
||||||
|
def reply(self, text: str):
|
||||||
|
self.bot.rpc.send_msg(
|
||||||
|
self.accid,
|
||||||
|
self.event.msg.chat_id,
|
||||||
|
MsgData(text),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class Command(ABC):
|
||||||
|
command: str|None = None
|
||||||
|
commands: list[str]|None = None
|
||||||
|
regex: re.Pattern|None = None
|
||||||
|
run_next: bool = False
|
||||||
|
|
||||||
|
def handles_message(self, event: NewMsgEvent) -> bool:
|
||||||
|
commands = [self.command] if self.command else self.commands
|
||||||
|
if commands:
|
||||||
|
for command in commands:
|
||||||
|
user_input = event.msg.text.lower()
|
||||||
|
expected_input = f"/{command.lower()}"
|
||||||
|
if user_input == expected_input or user_input.startswith(expected_input + " "):
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
if self.regex:
|
||||||
|
return self.regex.search(event.msg.text) is not None
|
||||||
|
raise NotImplementedError(f"The command has neither 'command' nor 'regex' set. Required one of the two.")
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def __call__(self, bot: Bot, accid: int, event: NewMsgEvent) -> None:
|
||||||
|
self.process_event(Context(bot, accid, event, self), event)
|
||||||
|
|
||||||
|
|
||||||
|
class CommandDispatcher:
|
||||||
|
def __init__(self):
|
||||||
|
self._commands: list[Command] = []
|
||||||
|
|
||||||
|
def add_command(self, command: Command):
|
||||||
|
self._commands.append(command)
|
||||||
|
|
||||||
|
def __call__(self, bot: Bot, accid: int, event: NewMsgEvent) -> None:
|
||||||
|
logger.info("Received new message")
|
||||||
|
for command in self._commands:
|
||||||
|
logger.debug("Checking against %s", command)
|
||||||
|
if command.handles_message(event):
|
||||||
|
logger.info("Match found. Running the command %s", command)
|
||||||
|
command(bot, accid, event)
|
||||||
|
if not command.run_next:
|
||||||
|
break
|
||||||
19
src/quadnite_bot/command_registry.py
Normal file
19
src/quadnite_bot/command_registry.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
from quadnite_bot.command import CommandDispatcher
|
||||||
|
from quadnite_bot.commands.absurdify import AbsurdifyCommand
|
||||||
|
from quadnite_bot.commands.dice import DiceMatch
|
||||||
|
from quadnite_bot.commands.echo import EchoCommand
|
||||||
|
from quadnite_bot.commands.help import HelpCommand
|
||||||
|
from quadnite_bot.commands.random import CoinCommand, QuestionCommand, WordCommand, WordsCommand
|
||||||
|
from quadnite_bot.commands.response import ResponseCommands
|
||||||
|
|
||||||
|
dispatcher = CommandDispatcher()
|
||||||
|
|
||||||
|
dispatcher.add_command(EchoCommand())
|
||||||
|
dispatcher.add_command(AbsurdifyCommand())
|
||||||
|
dispatcher.add_command(DiceMatch())
|
||||||
|
dispatcher.add_command(QuestionCommand())
|
||||||
|
dispatcher.add_command(WordCommand())
|
||||||
|
dispatcher.add_command(WordsCommand())
|
||||||
|
dispatcher.add_command(CoinCommand())
|
||||||
|
dispatcher.add_command(ResponseCommands())
|
||||||
|
dispatcher.add_command(HelpCommand())
|
||||||
0
src/quadnite_bot/commands/__init__.py
Normal file
0
src/quadnite_bot/commands/__init__.py
Normal file
16
src/quadnite_bot/commands/absurdify.py
Normal file
16
src/quadnite_bot/commands/absurdify.py
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import random
|
||||||
|
|
||||||
|
from deltachat2 import NewMsgEvent
|
||||||
|
|
||||||
|
from quadnite_bot.command import Command, Context
|
||||||
|
|
||||||
|
def _absurdify(text):
|
||||||
|
return "".join(
|
||||||
|
random.choice([char.upper(), char.lower()]) for char in text
|
||||||
|
)
|
||||||
|
|
||||||
|
class AbsurdifyCommand(Command):
|
||||||
|
command = "absurdify"
|
||||||
|
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
ctx.reply(_absurdify(ctx.params))
|
||||||
69
src/quadnite_bot/commands/dice.py
Normal file
69
src/quadnite_bot/commands/dice.py
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
import random
|
||||||
|
import re
|
||||||
|
import operator
|
||||||
|
|
||||||
|
from deltachat2 import NewMsgEvent
|
||||||
|
from quadnite_bot.command import Command, Context
|
||||||
|
|
||||||
|
|
||||||
|
class DiceMatch(Command):
|
||||||
|
regex = re.compile(
|
||||||
|
r"""^
|
||||||
|
/? # optional slash at beginning
|
||||||
|
(\d*)d(\d+) # num of dice + num of side
|
||||||
|
(\s*(kh|kl)\s*(\d+))? # keep highest / lowest
|
||||||
|
(\s*([-+><]|>=|<=)\s*(\d+))? # modifier for sum / count successes
|
||||||
|
$""",
|
||||||
|
re.I | re.VERBOSE,
|
||||||
|
)
|
||||||
|
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
if not ctx.match:
|
||||||
|
return
|
||||||
|
num_dice = int(ctx.match.group(1) or 1)
|
||||||
|
dice_sides = int(ctx.match.group(2))
|
||||||
|
if num_dice > 50:
|
||||||
|
ctx.reply("Maximum of 50 dice allowed")
|
||||||
|
|
||||||
|
if dice_sides > 1000:
|
||||||
|
ctx.reply("Number of sides must be 1000 or lower")
|
||||||
|
rolls = [random.randint(1, dice_sides) for _ in range(num_dice)]
|
||||||
|
|
||||||
|
message = "\n".join(
|
||||||
|
f"You rolled a D{dice_sides} and got a {roll}" for roll in rolls
|
||||||
|
)
|
||||||
|
message += "\n\n"
|
||||||
|
|
||||||
|
keep = ctx.match.group(4)
|
||||||
|
if keep:
|
||||||
|
keep_count = int(ctx.match.group(5))
|
||||||
|
rolls = sorted(rolls, reverse=keep=="kh")[:keep_count]
|
||||||
|
|
||||||
|
modifier = ctx.match.group(7)
|
||||||
|
modifier_value = ctx.match.group(8)
|
||||||
|
if modifier_value:
|
||||||
|
modifier_value = int(modifier_value)
|
||||||
|
else:
|
||||||
|
modifier_value = 0
|
||||||
|
if modifier in [None, "+", "-"]:
|
||||||
|
total = sum(rolls)
|
||||||
|
if modifier == "+":
|
||||||
|
total += modifier_value
|
||||||
|
elif modifier == "-":
|
||||||
|
total -= modifier_value
|
||||||
|
message += f"Total = {total}"
|
||||||
|
elif modifier in [">", "<", "<=", ">="]:
|
||||||
|
successes = 0
|
||||||
|
op_map = {
|
||||||
|
">": operator.gt,
|
||||||
|
"<": operator.lt,
|
||||||
|
">=": operator.ge,
|
||||||
|
"<=": operator.le,
|
||||||
|
}
|
||||||
|
for roll in rolls:
|
||||||
|
if op_map[modifier](roll, modifier_value):
|
||||||
|
successes += 1
|
||||||
|
|
||||||
|
message += f"You got {successes} successes."
|
||||||
|
|
||||||
|
ctx.reply(message)
|
||||||
8
src/quadnite_bot/commands/echo.py
Normal file
8
src/quadnite_bot/commands/echo.py
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from deltachat2 import NewMsgEvent
|
||||||
|
from quadnite_bot.command import Command, Context
|
||||||
|
|
||||||
|
class EchoCommand(Command):
|
||||||
|
command = "echo"
|
||||||
|
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
ctx.reply(event.msg.text)
|
||||||
17
src/quadnite_bot/commands/help.py
Normal file
17
src/quadnite_bot/commands/help.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
from deltachat2 import NewMsgEvent
|
||||||
|
from quadnite_bot.command import Command, Context
|
||||||
|
|
||||||
|
|
||||||
|
class HelpCommand(Command):
|
||||||
|
command = "help"
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.responses = []
|
||||||
|
for file in sorted((Path(__file__).resolve().parent.parent / "static/help").iterdir()):
|
||||||
|
with open(file) as f:
|
||||||
|
self.responses.append(f.read())
|
||||||
|
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
for response in self.responses:
|
||||||
|
ctx.reply(response)
|
||||||
53
src/quadnite_bot/commands/random.py
Normal file
53
src/quadnite_bot/commands/random.py
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
import random
|
||||||
|
|
||||||
|
from deltachat2 import NewMsgEvent
|
||||||
|
|
||||||
|
from quadnite_bot.command import Command, Context
|
||||||
|
|
||||||
|
|
||||||
|
class BaseRandomCommand(Command):
|
||||||
|
filename: str
|
||||||
|
def __init__(self):
|
||||||
|
file = Path(__file__).resolve().parent.parent / "static" / self.filename
|
||||||
|
with open(file) as f:
|
||||||
|
self.options = [line.strip() for line in f.readlines()]
|
||||||
|
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
ctx.reply(random.choice(self.options))
|
||||||
|
|
||||||
|
|
||||||
|
class QuestionCommand(BaseRandomCommand):
|
||||||
|
filename = "questions.txt"
|
||||||
|
command = "question"
|
||||||
|
|
||||||
|
|
||||||
|
class WordCommand(BaseRandomCommand):
|
||||||
|
filename = "words.txt"
|
||||||
|
command = "word"
|
||||||
|
|
||||||
|
|
||||||
|
class WordsCommand(BaseRandomCommand):
|
||||||
|
filename = "words.txt"
|
||||||
|
command = "words"
|
||||||
|
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
count = 10
|
||||||
|
if ctx.args:
|
||||||
|
try:
|
||||||
|
count = int(ctx.args[0])
|
||||||
|
except ValueError:
|
||||||
|
ctx.reply(f"{ctx.args[0]!r} is not a number.")
|
||||||
|
return
|
||||||
|
|
||||||
|
if count > 50:
|
||||||
|
count = 50
|
||||||
|
ctx.reply("Number too high. Limiting to 50.")
|
||||||
|
|
||||||
|
ctx.reply("\n".join(random.choices(self.options, k=count)))
|
||||||
|
|
||||||
|
|
||||||
|
class CoinCommand(BaseRandomCommand):
|
||||||
|
command = 'coin'
|
||||||
|
def __init__(self):
|
||||||
|
self.options = ['Heads', 'Tails']
|
||||||
19
src/quadnite_bot/commands/response.py
Normal file
19
src/quadnite_bot/commands/response.py
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import random
|
||||||
|
|
||||||
|
from deltachat2 import NewMsgEvent
|
||||||
|
from quadnite_bot.command import Command, Context
|
||||||
|
|
||||||
|
|
||||||
|
class ResponseCommands(Command):
|
||||||
|
commands = ["is", "are", "can", "will", "shall", "was", "do", "does", "did", "should"]
|
||||||
|
def process_event(self, ctx: Context, event: NewMsgEvent) -> None:
|
||||||
|
ctx.reply(
|
||||||
|
random.choice(
|
||||||
|
random.choice(
|
||||||
|
[
|
||||||
|
["Yes", "Yep", "Yeah", "Yus", "Ja", "Ya", "Aye", "Ay", "Oui"],
|
||||||
|
["No", "Nopes", "Nu", "Nah", "Nein", "Naw", "Nay", "Yesn't"],
|
||||||
|
]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
5
src/quadnite_bot/static/help/10_random.txt
Normal file
5
src/quadnite_bot/static/help/10_random.txt
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
Random
|
||||||
|
|
||||||
|
/coin - Tosses a coin
|
||||||
|
/wiki [search term] - Search Wikipedia
|
||||||
|
/arch_wiki [search term] - Search the Arch wiki
|
||||||
8
src/quadnite_bot/static/help/20_wordplay.txt
Normal file
8
src/quadnite_bot/static/help/20_wordplay.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
Wordplay
|
||||||
|
|
||||||
|
/question - Get a random question
|
||||||
|
/word - Get a random word
|
||||||
|
/words [n] - Get n random words
|
||||||
|
/weebify [text] - Weebifies the given text
|
||||||
|
/absurdify [text] - mAke tExT aBSUrd
|
||||||
|
/expand [word] - Expands a given abbreviation
|
||||||
8
src/quadnite_bot/static/help/30_question.txt
Normal file
8
src/quadnite_bot/static/help/30_question.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
Ask a question
|
||||||
|
|
||||||
|
/<command> [question]
|
||||||
|
|
||||||
|
/is /are /can
|
||||||
|
/will /did /shall
|
||||||
|
/was /do /does
|
||||||
|
/should
|
||||||
42
src/quadnite_bot/static/help/40_roleplay.txt
Normal file
42
src/quadnite_bot/static/help/40_roleplay.txt
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
Roleplay
|
||||||
|
|
||||||
|
/<command> [@user1] [@user2] ... [@userN] [message]
|
||||||
|
|
||||||
|
(All arguments to the commands are optional)
|
||||||
|
|
||||||
|
/angry /bite
|
||||||
|
/blush /bored
|
||||||
|
/bonk /boop
|
||||||
|
/chase /cheer
|
||||||
|
/cringe /cry
|
||||||
|
/cuddle /dab
|
||||||
|
/dance /die
|
||||||
|
/eat /facepalm
|
||||||
|
/feed /glomp
|
||||||
|
/happy /hate
|
||||||
|
/holdhands /hide
|
||||||
|
/highfive /hug
|
||||||
|
/kill /kiss
|
||||||
|
/laugh /lick
|
||||||
|
/love /lurk
|
||||||
|
/nervous /no
|
||||||
|
/nom /nuzzle
|
||||||
|
/panic /pat
|
||||||
|
/peck /poke
|
||||||
|
/pout /run
|
||||||
|
/shoot /shrug
|
||||||
|
/sip /slap
|
||||||
|
/sleep /snuggle
|
||||||
|
/stab /tease
|
||||||
|
/think /thumbsup
|
||||||
|
/tickle /triggered
|
||||||
|
/twerk /wag
|
||||||
|
/wave /wink
|
||||||
|
/yes
|
||||||
|
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
/hug @foobar
|
||||||
|
/slap making me angry
|
||||||
|
/holdhands @baz biz
|
||||||
16
src/quadnite_bot/static/help/50_dice.txt
Normal file
16
src/quadnite_bot/static/help/50_dice.txt
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
Dice
|
||||||
|
|
||||||
|
[num]d[sides] [keep modifier] [modifier]
|
||||||
|
|
||||||
|
num is the number of the dices to roll. (Optional)
|
||||||
|
sides is the number of sides of the dice. (Required)
|
||||||
|
keep_modifier is in the form of kh or kl followed by a number. This only keeps either the highest or lowest dice. (Optional)
|
||||||
|
modifier is in the form of +, -, >, <, >= or <= followed by a number. In case of + or -, the number is added or subtracted to the total. In case of >, <, >= or <=, the dice roll is checked against the condition and counted as a success if it matches it.(Optional)
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
1d6
|
||||||
|
2d10 + 5
|
||||||
|
3d20 kh2 - 2
|
||||||
|
2d20 kl 2
|
||||||
|
10d6 >= 6
|
||||||
|
6d20 < 10
|
||||||
@@ -67,3 +67,20 @@ Everyone has the right to be stupid but ##name## is abusing the privilege.
|
|||||||
##name## I’d tell you how I really feel, but I wasn’t born with enough middle fingers to express myself in this case.
|
##name## I’d tell you how I really feel, but I wasn’t born with enough middle fingers to express myself in this case.
|
||||||
##name## Stupidity’s not a crime, so feel free to go.
|
##name## Stupidity’s not a crime, so feel free to go.
|
||||||
##name## I’d tell you to go fuck yourself, but that would be cruel and unusual punishment.
|
##name## I’d tell you to go fuck yourself, but that would be cruel and unusual punishment.
|
||||||
|
I've finally found how ##name## is related to their pants, they're both full of shit.
|
||||||
|
There has been a rumor going around about ##name## acting like a dumbass. They're not acting.
|
||||||
|
##name## calling you an idiot would be an insult to stupid people.
|
||||||
|
##name## you know how laughter is supposed to be the best medicine? I'm surprised you haven't received an award for your face.
|
||||||
|
##name## you're the reason why shampoo bottles need directions.
|
||||||
|
They say trash takes 10-1000 years to go away, I sure hope you're going for a speedrun ##name##.
|
||||||
|
##name## makes me wish I had less eyes and ears.
|
||||||
|
##name## if you ran as much as your mouth maybe people would actually like you.
|
||||||
|
##name## mother nature takes pity on you.
|
||||||
|
If I had a face like ##name##'s I would file a lawsuit against my parents.
|
||||||
|
##name## I'm glad to see you finally graduated kindergarten.....oh no, I'm sorry I thought-
|
||||||
|
It makes me really sad to see how much time it takes ##name## to get ready in the morning, not that it makes much of a difference.
|
||||||
|
##name## I would try to insult you but it would take you the rest of the day to figure it out.
|
||||||
|
##name## I'm surprised your portraits don't hang themselves.
|
||||||
|
Many people think ##name## is a vampire because their reflection quit on the first day.
|
||||||
|
##name## you make satan consider going to church.
|
||||||
|
When god said 'Let there be light' he should have reconsidered after meeting ##name##.
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
##name## You should try playing snake and ladders, with real snakes and no ladders.
|
##name## You should try playing snake and ladders, with real snakes and no ladders.
|
||||||
##name## Dance naked on a couple of HT wires.
|
##name## Dance naked on a couple of HT wires.
|
||||||
##name## An active volcano is the best swimming pool for you.
|
##name## An active volcano is the best swimming pool for you.
|
||||||
##name## You shoulf try hot bath in a volcano.
|
##name## You should try hot bath in a volcano.
|
||||||
##name## Try to spend one day in a coffin and it will be yours forever.
|
##name## Try to spend one day in a coffin and it will be yours forever.
|
||||||
##name## Hit Uranium with a slow moving neutron in your presence. It will be a worthwhile experience.
|
##name## Hit Uranium with a slow moving neutron in your presence. It will be a worthwhile experience.
|
||||||
##name## You can be the first person to step on the sun. Have a try.
|
##name## You can be the first person to step on the sun. Have a try.
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
name?
|
|
||||||
How old are you?
|
How old are you?
|
||||||
Whats your Birthday?
|
Whats your Birthday?
|
||||||
What starsign does that make it?
|
What starsign does that make it?
|
||||||
@@ -606,32 +605,32 @@ On a scale of 1-10 how bitchy would you say you are?
|
|||||||
On a scale of 1-10 how polite would you say you are?
|
On a scale of 1-10 how polite would you say you are?
|
||||||
On a scale of 1-10 how attractive would you say you are?
|
On a scale of 1-10 how attractive would you say you are?
|
||||||
If you could be any famous person who would you be and why?
|
If you could be any famous person who would you be and why?
|
||||||
Whats your favourite animal beginning with the letter A?
|
Whats your favourite animal?
|
||||||
Whats your favourite item of clothing beginning with the letter B?
|
Whats your favourite item of clothing?
|
||||||
Whats your favourite expleitive beginning with the letter C?
|
Whats your favourite expleitive?
|
||||||
Whats your favourite boys name beginning with the letter D?
|
Whats your favourite boys name?
|
||||||
Whats your favourite girls name beginning with the letter E?
|
Whats your favourite girls name?
|
||||||
Whats your favourite book beginning with the letter F?
|
Whats your favourite book?
|
||||||
Whats your favourite bodypart beginning with the letter G?
|
Whats your favourite bodypart?
|
||||||
Whats your favourite musical instrument beginning with the letter H?
|
Whats your favourite musical instrument?
|
||||||
Whats your favourite song beginning with the letter I?
|
Whats your favourite song?
|
||||||
Whats your favourite actress beginning with the letter J?
|
Whats your favourite actress?
|
||||||
Whats your favourite actor beginning with the letter K?
|
Whats your favourite actor?
|
||||||
Whats your favourite film beginning with the letter L?
|
Whats your favourite film?
|
||||||
Whats your favourite tv show beginning with the letter M?
|
Whats your favourite tv show?
|
||||||
Whats your favourite game beginning with the letter N?
|
Whats your favourite game?
|
||||||
Whats your favourite non alcoholic drink beginning with the letter O?
|
Whats your favourite non alcoholic drink?
|
||||||
Whats your favourite food beginning with the letter P?
|
Whats your favourite food?
|
||||||
Whats your favourite band beginning with the letter Q?
|
Whats your favourite band?
|
||||||
Whats your favourite author beginning with the letter R?
|
Whats your favourite author?
|
||||||
Whats your favourite sport beginning with the letter S?
|
Whats your favourite sport?
|
||||||
Whats your favourite job beginning with the letter T?
|
Whats your favourite job?
|
||||||
Whats your favourite mythical creature beginning with the letter U?
|
Whats your favourite mythical creature?
|
||||||
Whats your favourite alcoholic drink beginning with the letter V?
|
Whats your favourite alcoholic drink?
|
||||||
Whats your favourite cartoon character beginning with the letter W?
|
Whats your favourite cartoon character?
|
||||||
Whats your favourite word beginning with the letter X?
|
Whats your favourite word?
|
||||||
Whats your favourite city beginning with the letter Y?
|
Whats your favourite city?
|
||||||
Whats your favourite country beginning with the letter Z?
|
Whats your favourite country?
|
||||||
Do you get seasick?
|
Do you get seasick?
|
||||||
If you discovered a new species of dinosaur what would you call it?
|
If you discovered a new species of dinosaur what would you call it?
|
||||||
Do you own a paddling pool?
|
Do you own a paddling pool?
|
||||||
@@ -1233,28 +1232,7 @@ If you were to remake a movie, what actors would you cast?
|
|||||||
If you were to replace a character in your favourite movie, who would you replace with who?
|
If you were to replace a character in your favourite movie, who would you replace with who?
|
||||||
Under rated actor who deserves to be famous in your opinion?
|
Under rated actor who deserves to be famous in your opinion?
|
||||||
Who’s your favourite celebrity with the same birthday or name as you?
|
Who’s your favourite celebrity with the same birthday or name as you?
|
||||||
What’s your favorite movie beginning with the letter A?
|
What’s your favorite movie?
|
||||||
What’s your fav movie beginning with the letter B?
|
|
||||||
What’s your fav movie beginning with the letter C?
|
|
||||||
What’s your fav movie beginning with the letter D?
|
|
||||||
What’s your fav movie beginning with the letter E?
|
|
||||||
What’s your fav movie beginning with the letter F?
|
|
||||||
What’s your fav movie beginning with the letter G?
|
|
||||||
What’s your fav movie beginning with the letter H?
|
|
||||||
What’s your fav movie beginning with the letter I?
|
|
||||||
What’s your fav movie beginning with the letter J?
|
|
||||||
What’s your fav movie beginning with the letter K?
|
|
||||||
What’s your fav movie beginning with the letter L?
|
|
||||||
What’s your fav movie beginning with the letter M?
|
|
||||||
What’s your fav movie beginning with the letter N?
|
|
||||||
What’s your fav movie beginning with the letter O?
|
|
||||||
What’s your fav movie beginning with the letter P?
|
|
||||||
What’s your fav movie beginning with the letter S?
|
|
||||||
What’s your fav movie beginning with the letter Q?
|
|
||||||
What’s your fav movie beginning with the letter V?
|
|
||||||
What’s your fav movie beginning with the letter X?
|
|
||||||
What’s your fav movie beginning with the letter Y?
|
|
||||||
What’s your fav movie beginning with the letter Z?
|
|
||||||
What movie would you wish to come to life?
|
What movie would you wish to come to life?
|
||||||
Movies you think one should watch before dying?
|
Movies you think one should watch before dying?
|
||||||
Favourite actor who has not won a oscar yet?
|
Favourite actor who has not won a oscar yet?
|
||||||
@@ -1576,28 +1554,7 @@ What is your favourite cheat in GTA?
|
|||||||
What car do you prefer to drive in GTA?
|
What car do you prefer to drive in GTA?
|
||||||
Hardest mission you’ve done in GTA?
|
Hardest mission you’ve done in GTA?
|
||||||
Easiest mission you’ve done in GTA?
|
Easiest mission you’ve done in GTA?
|
||||||
What’s your favourite game beginning with the letter A?
|
What’s your favourite game?
|
||||||
What’s your favourite game beginning with the letter B?
|
|
||||||
What’s your favourite game beginning with the letter C?
|
|
||||||
What’s your favourite game beginning with the letter D?
|
|
||||||
What’s your favourite game beginning with the letter E?
|
|
||||||
What’s your favourite game beginning with the letter F?
|
|
||||||
What’s your favourite game beginning with the letter G?
|
|
||||||
What’s your favourite game beginning with the letter H?
|
|
||||||
What’s your favourite game beginning with the letter I?
|
|
||||||
What’s your favourite game beginning with the letter J?
|
|
||||||
What’s your favourite game beginning with the letter K?
|
|
||||||
What’s your favourite game beginning with the letter L?
|
|
||||||
What’s your favourite game beginning with the letter M?
|
|
||||||
What’s your favourite game beginning with the letter N?
|
|
||||||
What’s your favourite game beginning with the letter O?
|
|
||||||
What’s your favourite game beginning with the letter P?
|
|
||||||
What’s your favourite game beginning with the letter S?
|
|
||||||
What’s your favourite game beginning with the letter Q?
|
|
||||||
What’s your favourite game beginning with the letter V?
|
|
||||||
What’s your favourite game beginning with the letter X?
|
|
||||||
What’s your favourite game beginning with the letter Y?
|
|
||||||
What’s your favourite game beginning with the letter Z?
|
|
||||||
Do you usually win or lose when playing against friends?
|
Do you usually win or lose when playing against friends?
|
||||||
What are your parents inputs on you gaming?
|
What are your parents inputs on you gaming?
|
||||||
What type of games do you like to play with your partner?
|
What type of games do you like to play with your partner?
|
||||||
@@ -1632,8 +1589,7 @@ What impact do you think phone’s have had on the world?
|
|||||||
Life without smartphone be like?
|
Life without smartphone be like?
|
||||||
Have you ever did a prank call on anyone? If so, who and how did you prank them?
|
Have you ever did a prank call on anyone? If so, who and how did you prank them?
|
||||||
What was their reaction?
|
What was their reaction?
|
||||||
Have you ever been prank called?
|
Have you ever been prank called? What was your reaction?
|
||||||
What was your reaction?
|
|
||||||
Favourite smartphone logo?
|
Favourite smartphone logo?
|
||||||
Your favourite iphone?
|
Your favourite iphone?
|
||||||
Your favourite samsung phone?
|
Your favourite samsung phone?
|
||||||
@@ -1651,28 +1607,7 @@ Worst app you’ve installed?
|
|||||||
Do you prefer free or paid apps?
|
Do you prefer free or paid apps?
|
||||||
Have you bought any paid apps? If so which?
|
Have you bought any paid apps? If so which?
|
||||||
Most expensive paid app you bought and were you satisfied with it?
|
Most expensive paid app you bought and were you satisfied with it?
|
||||||
What’s your favourite mobile app beginning with the letter A?
|
What’s your favourite mobile app?
|
||||||
What’s your favourite mobile app beginning with the letter B?
|
|
||||||
What’s your favourite mobile app beginning with the letter C?
|
|
||||||
What’s your favourite mobile app beginning with the letter D?
|
|
||||||
What’s your favourite mobile appbeginning with the letter E?
|
|
||||||
What’s your favourite mobile app beginning with the letter F?
|
|
||||||
What’s your favourite mobile app beginning with the letter G?
|
|
||||||
What’s your favourite mobile app beginning with the letter H?
|
|
||||||
What’s your favourite mobile app beginning with the letter I?
|
|
||||||
What’s your favourite mobile app beginning with the letter J?
|
|
||||||
What’s your favourite mobile app beginning with the letter K?
|
|
||||||
What’s your favourite mobile app beginning with the letter L?
|
|
||||||
What’s your favourite mobile app beginning with the letter M?
|
|
||||||
What’s your favourite mobile app beginning with the letter N?
|
|
||||||
What’s your favourite mobile app beginning with the letter O?
|
|
||||||
What’s your favourite mobile app beginning with the letter P?
|
|
||||||
What’s your favourite mobile app beginning with the letter S?
|
|
||||||
What’s your favourite mobile app beginning with the letter Q?
|
|
||||||
What’s your favourite mobile app beginning with the letter V?
|
|
||||||
What’s your favourite mobile app beginning with the letter X?
|
|
||||||
What’s your favourite mobile app beginning with the letter Y?
|
|
||||||
What’s your favourite mobile app beginning with the letter Z?
|
|
||||||
How do you usually take your photos? (With camera, phone? etc)
|
How do you usually take your photos? (With camera, phone? etc)
|
||||||
What software do you use to backup your photos?
|
What software do you use to backup your photos?
|
||||||
Total number of photos you’ve in your gallery?
|
Total number of photos you’ve in your gallery?
|
||||||
@@ -1755,4 +1690,3 @@ How do you memorize your numbers?
|
|||||||
Have you ever been stuck in a bad situation but had no phone?
|
Have you ever been stuck in a bad situation but had no phone?
|
||||||
How many signal bars do you usually get in your room?
|
How many signal bars do you usually get in your room?
|
||||||
What service provider do you think is the best and why so?
|
What service provider do you think is the best and why so?
|
||||||
|
|
||||||
476
src/quadnite_bot/static/roleplay.json
Normal file
476
src/quadnite_bot/static/roleplay.json
Normal file
@@ -0,0 +1,476 @@
|
|||||||
|
{
|
||||||
|
"angry": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is angry",
|
||||||
|
"others": "{} is angry at {}",
|
||||||
|
"reason": "{} is angry because {}",
|
||||||
|
"both": "{} is angry at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bite": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is biting",
|
||||||
|
"others": "{} is biting {}",
|
||||||
|
"reason": "{} is biting because {}",
|
||||||
|
"both": "{} is biting {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"blush": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is blushing",
|
||||||
|
"others": "{} is blushing at {}",
|
||||||
|
"reason": "{} is blushing because {}",
|
||||||
|
"both": "{} is blushing at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bored": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is bored",
|
||||||
|
"others": "{}, {} are bored",
|
||||||
|
"reason": "{} is bored because {}",
|
||||||
|
"both": "{}, {} are bored because {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bonk": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is bonking",
|
||||||
|
"others": "{} is bonking {}",
|
||||||
|
"reason": "{} is bonking because {}",
|
||||||
|
"both": "{} is bonking {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"boop": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is booping",
|
||||||
|
"others": "{} is booping {}",
|
||||||
|
"reason": "{} is booping because {}",
|
||||||
|
"both": "{} is booping {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"chase": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is chasing",
|
||||||
|
"others": "{} is chasing {}",
|
||||||
|
"reason": "{} is chasing because {}",
|
||||||
|
"both": "{} is chasing {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cheer": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is cheering",
|
||||||
|
"others": "{} is cheering for {}",
|
||||||
|
"reason": "{} is cheering because {}",
|
||||||
|
"both": "{} is cheering for {} because {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cringe": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is cringing",
|
||||||
|
"others": "{} is cringing at {}",
|
||||||
|
"reason": "{} is cringing because {}",
|
||||||
|
"both": "{} is cringing at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cry": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is crying",
|
||||||
|
"others": "{} is crying at {}",
|
||||||
|
"reason": "{} is crying because {}",
|
||||||
|
"both": "{} is crying at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cuddle": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is cuddling",
|
||||||
|
"others": "{} is cuddling with {}",
|
||||||
|
"reason": "{} is cuddling because {}",
|
||||||
|
"both": "{} is cuddling with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dab": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is dabing",
|
||||||
|
"others": "{} is dabing at {}",
|
||||||
|
"reason": "{} is dabing because {}",
|
||||||
|
"both": "{} is dabing at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dance": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is dancing",
|
||||||
|
"others": "{} is dancing with {}",
|
||||||
|
"reason": "{} is dancing because {}",
|
||||||
|
"both": "{} is dancing with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"die": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is dying",
|
||||||
|
"others": "{} is dying with {}",
|
||||||
|
"reason": "{} is dying because {}",
|
||||||
|
"both": "{} is dying with {} because {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"eat": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is eating",
|
||||||
|
"others": "{} is eating with {}",
|
||||||
|
"reason": "{} is eating because {}",
|
||||||
|
"both": "{} is eating with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"facepalm": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is facepalming",
|
||||||
|
"others": "{} is facepalming at {}",
|
||||||
|
"reason": "{} is facepalming because {}",
|
||||||
|
"both": "{} is facepalming at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"feed": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is eating",
|
||||||
|
"others": "{} is feeding {}",
|
||||||
|
"reason": "{} is eating because {}",
|
||||||
|
"both": "{} is feeding {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"glomp": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is glomping",
|
||||||
|
"others": "{} is glomping {}",
|
||||||
|
"reason": "{} is glomping because {}",
|
||||||
|
"both": "{} is glomping {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"handhold": {
|
||||||
|
"alias": "holdhands"
|
||||||
|
},
|
||||||
|
"happy": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is happy",
|
||||||
|
"others": "{} is happy with {}",
|
||||||
|
"reason": "{} is happy because {}",
|
||||||
|
"both": "{} is happy with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"hate": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is hating",
|
||||||
|
"others": "{} is hating {}",
|
||||||
|
"reason": "{} is hating because {}",
|
||||||
|
"both": "{} is hating {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"holdhands": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is holding hands",
|
||||||
|
"others": "{} is holding hands with {}",
|
||||||
|
"reason": "{} is holding hands because {}",
|
||||||
|
"both": "{} is holding hands with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"hide": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is hiding",
|
||||||
|
"others": "{} is hiding from {}",
|
||||||
|
"reason": "{} is hiding because {}",
|
||||||
|
"both": "{} is hiding from {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"highfive": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is high fiving",
|
||||||
|
"others": "{} is high fiving with {}",
|
||||||
|
"reason": "{} is high fiving because {}",
|
||||||
|
"both": "{} is high fiving with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"hug": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is hugging",
|
||||||
|
"others": "{} is hugging {}",
|
||||||
|
"reason": "{} is hugging because {}",
|
||||||
|
"both": "{} is hugging at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kill": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is killing",
|
||||||
|
"others": "{} is killing {}",
|
||||||
|
"reason": "{} is killing because {}",
|
||||||
|
"both": "{} is killing {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"kiss": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is kissing",
|
||||||
|
"others": "{} is kissing {}",
|
||||||
|
"reason": "{} is kissing because {}",
|
||||||
|
"both": "{} is kissing {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"laugh": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is laughing",
|
||||||
|
"others": "{} is laughing with {}",
|
||||||
|
"reason": "{} is laughing because {}",
|
||||||
|
"both": "{} is laughing with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lick": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is licking",
|
||||||
|
"others": "{} is licking {}",
|
||||||
|
"reason": "{} is licking {}",
|
||||||
|
"both": "{} is licking {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"love": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is loving",
|
||||||
|
"others": "{} is loving {}",
|
||||||
|
"reason": "{} is loving because {}",
|
||||||
|
"both": "{} is loving {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lurk": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is lurking",
|
||||||
|
"others": "{} is lurking from {}",
|
||||||
|
"reason": "{} is lurking because {}",
|
||||||
|
"both": "{} is lurking from {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nervous": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is nervous",
|
||||||
|
"others": "{} is nervous with {}",
|
||||||
|
"reason": "{} is nervous because {}",
|
||||||
|
"both": "{} is nervous with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"no": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is saying no",
|
||||||
|
"others": "{} is saying no to {}",
|
||||||
|
"reason": "{} is saying no because {}",
|
||||||
|
"both": "{} is saying no to {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nom": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is noming",
|
||||||
|
"others": "{} is noming {}",
|
||||||
|
"reason": "{} is noming because {}",
|
||||||
|
"both": "{} is noming {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nuzzle": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is nuzzling",
|
||||||
|
"others": "{} is nuzzling {}",
|
||||||
|
"reason": "{} is nuzzling because {}",
|
||||||
|
"both": "{} is nuzzling {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"panic": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is panicking",
|
||||||
|
"others": "{} is panicking at {}",
|
||||||
|
"reason": "{} is panicking because {}",
|
||||||
|
"both": "{} is panicking at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pat": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is patting",
|
||||||
|
"others": "{} is patting {}",
|
||||||
|
"reason": "{} is patting because {}",
|
||||||
|
"both": "{} is patting {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"peck": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is pecking",
|
||||||
|
"others": "{} is pecking {}",
|
||||||
|
"reason": "{} is pecking because {}",
|
||||||
|
"both": "{} is pecking {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"poke": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is poking",
|
||||||
|
"others": "{} is poking {}",
|
||||||
|
"reason": "{} is poking because {}",
|
||||||
|
"both": "{} is poking {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pout": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is pouting",
|
||||||
|
"others": "{} is pouting at {}",
|
||||||
|
"reason": "{} is pouting because {}",
|
||||||
|
"both": "{} is pouting at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"run": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is running",
|
||||||
|
"others": "{} is running from {}",
|
||||||
|
"reason": "{} is running because {}",
|
||||||
|
"both": "{} is running from {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runs": {
|
||||||
|
"alias": "run"
|
||||||
|
},
|
||||||
|
"shoot": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is shooting",
|
||||||
|
"others": "{} is shooting {}",
|
||||||
|
"reason": "{} is shooting because {}",
|
||||||
|
"both": "{} is shooting {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"shrug": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is shrugging",
|
||||||
|
"others": "{} is shrugging at {}",
|
||||||
|
"reason": "{} is shrugging because {}",
|
||||||
|
"both": "{} is shrugging at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sip": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is sipping",
|
||||||
|
"others": "{} is sipping with {}",
|
||||||
|
"reason": "{} is sipping because {}",
|
||||||
|
"both": "{} is sipping with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"slap": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is slapping",
|
||||||
|
"others": "{} is slapping {}",
|
||||||
|
"reason": "{} is slapping because {}",
|
||||||
|
"both": "{} is slapping {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sleep": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is sleeping",
|
||||||
|
"others": "{} is sleeping with {}",
|
||||||
|
"reason": "{} is sleeping because {}",
|
||||||
|
"both": "{} is sleeping {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sob": {
|
||||||
|
"alias": "sobs"
|
||||||
|
},
|
||||||
|
"sobs": {
|
||||||
|
"alias": "cry",
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is sobbing",
|
||||||
|
"others": "{} is sobbing due to {}",
|
||||||
|
"reason": "{} is sobbing because {}",
|
||||||
|
"both": "{} is sobbing due to {} because {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"snuggle": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is snuggling",
|
||||||
|
"others": "{} is snuggling {}",
|
||||||
|
"reason": "{} is snuggling because {}",
|
||||||
|
"both": "{} is snuggling {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"stab": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is stabbing",
|
||||||
|
"others": "{} is stabbing {}",
|
||||||
|
"reason": "{} is stabbing because {}",
|
||||||
|
"both": "{} is stabbing {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tease": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is teasing",
|
||||||
|
"others": "{} is teasing {}",
|
||||||
|
"reason": "{} is teasing because {}",
|
||||||
|
"both": "{} is teasing {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"think": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is thinking",
|
||||||
|
"others": "{} is thinking with {}",
|
||||||
|
"reason": "{} is thinking because {}",
|
||||||
|
"both": "{} is thinking with {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"thumbsup": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is giving a thumbs up",
|
||||||
|
"others": "{} is giving a thumbs up to {}",
|
||||||
|
"reason": "{} is giving a thumbs up because {}",
|
||||||
|
"both": "{} is giving a thumbs up to {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tickle": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is tickling",
|
||||||
|
"others": "{} is tickling {}",
|
||||||
|
"reason": "{} is tickling because {}",
|
||||||
|
"both": "{} is tickling {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"triggered": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is triggered",
|
||||||
|
"others": "{} is triggered by {}",
|
||||||
|
"reason": "{} is triggered because {}",
|
||||||
|
"both": "{} is triggered by {} because {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"twerk": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is twerking",
|
||||||
|
"others": "{} is twerking with {}",
|
||||||
|
"reason": "{} is twerking because {}",
|
||||||
|
"both": "{} is twerking with {} because {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"wag": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is wagging",
|
||||||
|
"others": "{} is wagging at {}",
|
||||||
|
"reason": "{} is wagging because {}",
|
||||||
|
"both": "{} is wagging at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"wave": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is waving",
|
||||||
|
"others": "{} is waving at {}",
|
||||||
|
"reason": "{} is waving because {}",
|
||||||
|
"both": "{} is waving at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"wink": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is winking",
|
||||||
|
"others": "{} is winking at {}",
|
||||||
|
"reason": "{} is winking because {}",
|
||||||
|
"both": "{} is winking at {} for {}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"yes": {
|
||||||
|
"forms": {
|
||||||
|
"none": "{} is saying yes",
|
||||||
|
"others": "{} is saying yes to {}",
|
||||||
|
"reason": "{} is saying yes because {}",
|
||||||
|
"both": "{} is saying yes to {} for {}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
338
uv.lock
generated
Normal file
338
uv.lock
generated
Normal file
@@ -0,0 +1,338 @@
|
|||||||
|
version = 1
|
||||||
|
revision = 3
|
||||||
|
requires-python = ">=3.13"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "appdirs"
|
||||||
|
version = "1.4.4"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", size = 13470, upload-time = "2020-05-11T07:59:51.037Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128", size = 9566, upload-time = "2020-05-11T07:59:49.499Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "asttokens"
|
||||||
|
version = "3.0.1"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/be/a5/8e3f9b6771b0b408517c82d97aed8f2036509bc247d46114925e32fe33f0/asttokens-3.0.1.tar.gz", hash = "sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7", size = 62308, upload-time = "2025-11-15T16:43:48.578Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/d2/39/e7eaf1799466a4aef85b6a4fe7bd175ad2b1c6345066aa33f1f58d4b18d0/asttokens-3.0.1-py3-none-any.whl", hash = "sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a", size = 27047, upload-time = "2025-11-15T16:43:16.109Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "colorama"
|
||||||
|
version = "0.4.6"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "decorator"
|
||||||
|
version = "5.2.1"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "deltabot-cli"
|
||||||
|
version = "8.1.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "appdirs" },
|
||||||
|
{ name = "deltachat2", extra = ["full"] },
|
||||||
|
{ name = "rich" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/8c/3c/b380bc6c2bf3d76d7d39faec57e022d25447d0503c04109f5bc1ca0c779a/deltabot_cli-8.1.0.tar.gz", hash = "sha256:53bf983d9a76381deb23506d232de619993b82642d76ead201a1beef27ebe98e", size = 14886, upload-time = "2026-04-14T02:09:42.214Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/7b/64/cfecb6303fd90be9897ba6bb3184955996368ceff02a49853a31fff54b92/deltabot_cli-8.1.0-py3-none-any.whl", hash = "sha256:691bf62266628f6ef25788cba2054ab6fb2774e1918c8a7fb66be6e3e135fa3a", size = 12694, upload-time = "2026-04-14T02:09:41.303Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "deltachat-rpc-server"
|
||||||
|
version = "2.49.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b6/5c/5cc080e47555116f34c9c14c8c8bad14568499b148bcbb1c736447b9afa5/deltachat_rpc_server-2.49.0-py3-none-android_21_arm64_v8a.whl", hash = "sha256:a5a6aed57436766794764aa90897eddd700bffca979c924725a3dff3b40ccca3", size = 11455996, upload-time = "2026-04-13T09:11:05.039Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b2/6c/1641b807f7a880a495c58f76f6f333e0db46a1a891cea155d1077e66a831/deltachat_rpc_server-2.49.0-py3-none-android_21_armeabi_v7a.whl", hash = "sha256:100379ca2c29aaa433dd536038ee5603f3ab36517777b0d5923a2d4bd1e4b701", size = 9712072, upload-time = "2026-04-13T09:11:07.88Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/2a/1f/c5c61a1ffd3c2369848db9cd1e83989257b3b5836b07d61c0de9b51c515d/deltachat_rpc_server-2.49.0-py3-none-linux_armv6l.whl", hash = "sha256:4a0719575130ea8d96eeceb4b0c2eca4de276c9b0aa42d6a048438754107003f", size = 10558722, upload-time = "2026-04-13T09:11:10.355Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/2c/ab/65d7f305cca0762a17bcd0686650d33e5b8c2dd66e9a304633066677344e/deltachat_rpc_server-2.49.0-py3-none-linux_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:449c9b714a520b60f843735bdd3fb4be891dd08c15db3e6e1bebb643a7be9178", size = 10457845, upload-time = "2026-04-13T09:11:12.749Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/6d/14/f47884b55bf267115e89826db02ff65a4b409658fc1190c9b793dcd65c7f/deltachat_rpc_server-2.49.0-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:7c6897c9beb0b75ecbbddd9417f05906a5646e61fe7f6f4bec0e1392055c6871", size = 9929478, upload-time = "2026-04-13T09:11:15.567Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/a3/e1/8a0c2657d53b9c463d94b749481cd616a4ba9f8a9b67daa5b506019fd9b3/deltachat_rpc_server-2.49.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:b62592f0217ff2de23fd363c0fb47b17a0de94fb4e7f21e2aa5a7196cd87d6eb", size = 9743447, upload-time = "2026-04-13T09:11:18.209Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/aa/f6/59f4e09dbd6f6f9ada62436ad0a7d16072412bce65f071fa20723c9b024b/deltachat_rpc_server-2.49.0-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:687315e0e9a753c42ae1ad241013b72e863fe267297e17d26f141b277733452a", size = 11172948, upload-time = "2026-04-13T09:11:21.043Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/9a/f1/507556562cf52606b726b2deafb052d90161a3ebf195f15448b807a9311f/deltachat_rpc_server-2.49.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:84e1b89cfcfd0be07c9d43fa830f9ebdd84eb6d5c71e558c19ee81d18d7c23c1", size = 11409855, upload-time = "2026-04-13T09:11:23.72Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/bd/e1/b6b9defefd8d5e5896993ec6be5dafeb3e5c44da6db1b60d671553d8a618/deltachat_rpc_server-2.49.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:2aa8f41aebe7a502bd30e72f8009a199f4f91948deffcfab90b71c5dbbee9691", size = 11745522, upload-time = "2026-04-13T09:11:26.426Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/df/e9/ca3978f05a4edb450da387275fa0401bd26f80d22e339b0b7e0107ab76ea/deltachat_rpc_server-2.49.0-py3-none-win32.whl", hash = "sha256:a80cb2171685060d7c48f90013ecf5e0239fa5b1b6c3598c37d593903438a4d9", size = 10527871, upload-time = "2026-04-13T09:11:29.359Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/ff/d3/3eb5b1ad0dd193288ced6ac44b9d3741768b17ffdca8cc13bd53cc994802/deltachat_rpc_server-2.49.0-py3-none-win_amd64.whl", hash = "sha256:324e480f201a9477b045571aa9baf08ee07b5eb53ef7ae3b64efb689efa124fd", size = 10546684, upload-time = "2026-04-13T09:11:32.141Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "deltachat2"
|
||||||
|
version = "0.10.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/f0/c1/f025ab95da941fdaf49a47978974c3666d681625b5f584b2782c14ca1f31/deltachat2-0.10.0.tar.gz", hash = "sha256:b27f2f46cfb378b276a530f7f8eb475aa113339d2136825539332823cbb5a389", size = 19563, upload-time = "2026-04-13T23:44:31.639Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/ec/ad/0eb9c72275c8178a2668da906f2635c90a97a7c5cecbfb2624cdc7cc1048/deltachat2-0.10.0-py3-none-any.whl", hash = "sha256:b20ff04b295ddebd981bb9be9185868ce5448c83b0ddfb064bef77706a3dbd45", size = 19062, upload-time = "2026-04-13T23:44:30.492Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.optional-dependencies]
|
||||||
|
full = [
|
||||||
|
{ name = "deltachat-rpc-server" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "executing"
|
||||||
|
version = "2.2.1"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/cc/28/c14e053b6762b1044f34a13aab6859bbf40456d37d23aa286ac24cfd9a5d/executing-2.2.1.tar.gz", hash = "sha256:3632cc370565f6648cc328b32435bd120a1e4ebb20c77e3fdde9a13cd1e533c4", size = 1129488, upload-time = "2025-09-01T09:48:10.866Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl", hash = "sha256:760643d3452b4d777d295bb167ccc74c64a81df23fb5e08eff250c425a4b2017", size = 28317, upload-time = "2025-09-01T09:48:08.5Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ipdb"
|
||||||
|
version = "0.13.13"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "decorator" },
|
||||||
|
{ name = "ipython" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/3d/1b/7e07e7b752017f7693a0f4d41c13e5ca29ce8cbcfdcc1fd6c4ad8c0a27a0/ipdb-0.13.13.tar.gz", hash = "sha256:e3ac6018ef05126d442af680aad863006ec19d02290561ac88b8b1c0b0cfc726", size = 17042, upload-time = "2023-03-09T15:40:57.487Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/0c/4c/b075da0092003d9a55cf2ecc1cae9384a1ca4f650d51b00fc59875fe76f6/ipdb-0.13.13-py3-none-any.whl", hash = "sha256:45529994741c4ab6d2388bfa5d7b725c2cf7fe9deffabdb8a6113aa5ed449ed4", size = 12130, upload-time = "2023-03-09T15:40:55.021Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ipython"
|
||||||
|
version = "9.13.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "colorama", marker = "sys_platform == 'win32'" },
|
||||||
|
{ name = "decorator" },
|
||||||
|
{ name = "ipython-pygments-lexers" },
|
||||||
|
{ name = "jedi" },
|
||||||
|
{ name = "matplotlib-inline" },
|
||||||
|
{ name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" },
|
||||||
|
{ name = "prompt-toolkit" },
|
||||||
|
{ name = "psutil" },
|
||||||
|
{ name = "pygments" },
|
||||||
|
{ name = "stack-data" },
|
||||||
|
{ name = "traitlets" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/cd/c4/87cda5842cf5c31837c06ddb588e11c3c35d8ece89b7a0108c06b8c9b00a/ipython-9.13.0.tar.gz", hash = "sha256:7e834b6afc99f020e3f05966ced34792f40267d64cb1ea9043886dab0dde5967", size = 4430549, upload-time = "2026-04-24T12:24:55.221Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b9/86/3060e8029b7cc505cce9a0137431dda81d0a3fde93a8f0f50ee0bf37a795/ipython-9.13.0-py3-none-any.whl", hash = "sha256:57f9d4639e20818d328d287c7b549af3d05f12486ea8f2e7f73e52a36ec4d201", size = 627274, upload-time = "2026-04-24T12:24:53.038Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ipython-pygments-lexers"
|
||||||
|
version = "1.1.1"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "pygments" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/ef/4c/5dd1d8af08107f88c7f741ead7a40854b8ac24ddf9ae850afbcf698aa552/ipython_pygments_lexers-1.1.1.tar.gz", hash = "sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81", size = 8393, upload-time = "2025-01-17T11:24:34.505Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl", hash = "sha256:a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c", size = 8074, upload-time = "2025-01-17T11:24:33.271Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "jedi"
|
||||||
|
version = "0.20.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "parso" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/46/b7/a3635f6a2d7cf5b5dd98064fc1d5fbbafcb25477bcea204a3a92145d158b/jedi-0.20.0.tar.gz", hash = "sha256:c3f4ccbd276696f4b19c54618d4fb18f9fc24b0aef02acf704b23f487daa1011", size = 3119416, upload-time = "2026-05-01T23:38:47.814Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/9a/93/242e2eab5fe682ffcb8b0084bde703a41d51e17ee0f3a31ff0d9d813620a/jedi-0.20.0-py2.py3-none-any.whl", hash = "sha256:7bdd9c2634f56713299976f4cbd59cb3fa92165cc5e05ea811fb253480728b67", size = 4884812, upload-time = "2026-05-01T23:38:43.919Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "markdown-it-py"
|
||||||
|
version = "4.0.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "mdurl" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "matplotlib-inline"
|
||||||
|
version = "0.2.2"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "traitlets" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/bd/c0/9f7c9a46090390368a4d7bcb76bb87a4a36c421e4c0792cdb53486ffac7a/matplotlib_inline-0.2.2.tar.gz", hash = "sha256:72f3fe8fce36b70d4a5b612f899090cd0401deddc4ea90e1572b9f4bfb058c79", size = 8150, upload-time = "2026-05-08T17:33:33.49Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/41/09/5b161152e2d90f7b87f781c2e1267494aef9c32498df793f73ad0a0a494a/matplotlib_inline-0.2.2-py3-none-any.whl", hash = "sha256:3c821cf1c209f59fb2d2d64abbf5b23b67bcb2210d663f9918dd851c6da1fcf6", size = 9534, upload-time = "2026-05-08T17:33:32.055Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "mdurl"
|
||||||
|
version = "0.1.2"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "parso"
|
||||||
|
version = "0.8.7"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/30/4b/90c937815137d43ce71ba043cd3566221e9df6b9c805f24b5d138c9d40a7/parso-0.8.7.tar.gz", hash = "sha256:eaaac4c9fdd5e9e8852dc778d2d7405897ec510f2a298071453e5e3a07914bb1", size = 401824, upload-time = "2026-05-01T23:13:02.138Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/99/5d/8268b644392ee874ee82a635cd0df1773de230bde356c38de28e298392cc/parso-0.8.7-py2.py3-none-any.whl", hash = "sha256:a8926eb2a1b915486941fdbd31e86a4baf88fe8c210f25f2f35ecec5b574ca1c", size = 107025, upload-time = "2026-05-01T23:12:58.867Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pexpect"
|
||||||
|
version = "4.9.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "ptyprocess" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "prompt-toolkit"
|
||||||
|
version = "3.0.52"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "wcwidth" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/a1/96/06e01a7b38dce6fe1db213e061a4602dd6032a8a97ef6c1a862537732421/prompt_toolkit-3.0.52.tar.gz", hash = "sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855", size = 434198, upload-time = "2025-08-27T15:24:02.057Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/84/03/0d3ce49e2505ae70cf43bc5bb3033955d2fc9f932163e84dc0779cc47f48/prompt_toolkit-3.0.52-py3-none-any.whl", hash = "sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955", size = 391431, upload-time = "2025-08-27T15:23:59.498Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "psutil"
|
||||||
|
version = "7.2.2"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/aa/c6/d1ddf4abb55e93cebc4f2ed8b5d6dbad109ecb8d63748dd2b20ab5e57ebe/psutil-7.2.2.tar.gz", hash = "sha256:0746f5f8d406af344fd547f1c8daa5f5c33dbc293bb8d6a16d80b4bb88f59372", size = 493740, upload-time = "2026-01-28T18:14:54.428Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/51/08/510cbdb69c25a96f4ae523f733cdc963ae654904e8db864c07585ef99875/psutil-7.2.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2edccc433cbfa046b980b0df0171cd25bcaeb3a68fe9022db0979e7aa74a826b", size = 130595, upload-time = "2026-01-28T18:14:57.293Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/d6/f5/97baea3fe7a5a9af7436301f85490905379b1c6f2dd51fe3ecf24b4c5fbf/psutil-7.2.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e78c8603dcd9a04c7364f1a3e670cea95d51ee865e4efb3556a3a63adef958ea", size = 131082, upload-time = "2026-01-28T18:14:59.732Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/37/d6/246513fbf9fa174af531f28412297dd05241d97a75911ac8febefa1a53c6/psutil-7.2.2-cp313-cp313t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1a571f2330c966c62aeda00dd24620425d4b0cc86881c89861fbc04549e5dc63", size = 181476, upload-time = "2026-01-28T18:15:01.884Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b8/b5/9182c9af3836cca61696dabe4fd1304e17bc56cb62f17439e1154f225dd3/psutil-7.2.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:917e891983ca3c1887b4ef36447b1e0873e70c933afc831c6b6da078ba474312", size = 184062, upload-time = "2026-01-28T18:15:04.436Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/16/ba/0756dca669f5a9300d0cbcbfae9a4c30e446dfc7440ffe43ded5724bfd93/psutil-7.2.2-cp313-cp313t-win_amd64.whl", hash = "sha256:ab486563df44c17f5173621c7b198955bd6b613fb87c71c161f827d3fb149a9b", size = 139893, upload-time = "2026-01-28T18:15:06.378Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/1c/61/8fa0e26f33623b49949346de05ec1ddaad02ed8ba64af45f40a147dbfa97/psutil-7.2.2-cp313-cp313t-win_arm64.whl", hash = "sha256:ae0aefdd8796a7737eccea863f80f81e468a1e4cf14d926bd9b6f5f2d5f90ca9", size = 135589, upload-time = "2026-01-28T18:15:08.03Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/81/69/ef179ab5ca24f32acc1dac0c247fd6a13b501fd5534dbae0e05a1c48b66d/psutil-7.2.2-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:eed63d3b4d62449571547b60578c5b2c4bcccc5387148db46e0c2313dad0ee00", size = 130664, upload-time = "2026-01-28T18:15:09.469Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/7b/64/665248b557a236d3fa9efc378d60d95ef56dd0a490c2cd37dafc7660d4a9/psutil-7.2.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7b6d09433a10592ce39b13d7be5a54fbac1d1228ed29abc880fb23df7cb694c9", size = 131087, upload-time = "2026-01-28T18:15:11.724Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/d5/2e/e6782744700d6759ebce3043dcfa661fb61e2fb752b91cdeae9af12c2178/psutil-7.2.2-cp314-cp314t-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1fa4ecf83bcdf6e6c8f4449aff98eefb5d0604bf88cb883d7da3d8d2d909546a", size = 182383, upload-time = "2026-01-28T18:15:13.445Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/57/49/0a41cefd10cb7505cdc04dab3eacf24c0c2cb158a998b8c7b1d27ee2c1f5/psutil-7.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e452c464a02e7dc7822a05d25db4cde564444a67e58539a00f929c51eddda0cf", size = 185210, upload-time = "2026-01-28T18:15:16.002Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/dd/2c/ff9bfb544f283ba5f83ba725a3c5fec6d6b10b8f27ac1dc641c473dc390d/psutil-7.2.2-cp314-cp314t-win_amd64.whl", hash = "sha256:c7663d4e37f13e884d13994247449e9f8f574bc4655d509c3b95e9ec9e2b9dc1", size = 141228, upload-time = "2026-01-28T18:15:18.385Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/f2/fc/f8d9c31db14fcec13748d373e668bc3bed94d9077dbc17fb0eebc073233c/psutil-7.2.2-cp314-cp314t-win_arm64.whl", hash = "sha256:11fe5a4f613759764e79c65cf11ebdf26e33d6dd34336f8a337aa2996d71c841", size = 136284, upload-time = "2026-01-28T18:15:19.912Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/e7/36/5ee6e05c9bd427237b11b3937ad82bb8ad2752d72c6969314590dd0c2f6e/psutil-7.2.2-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ed0cace939114f62738d808fdcecd4c869222507e266e574799e9c0faa17d486", size = 129090, upload-time = "2026-01-28T18:15:22.168Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/80/c4/f5af4c1ca8c1eeb2e92ccca14ce8effdeec651d5ab6053c589b074eda6e1/psutil-7.2.2-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:1a7b04c10f32cc88ab39cbf606e117fd74721c831c98a27dc04578deb0c16979", size = 129859, upload-time = "2026-01-28T18:15:23.795Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b5/70/5d8df3b09e25bce090399cf48e452d25c935ab72dad19406c77f4e828045/psutil-7.2.2-cp36-abi3-manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:076a2d2f923fd4821644f5ba89f059523da90dc9014e85f8e45a5774ca5bc6f9", size = 155560, upload-time = "2026-01-28T18:15:25.976Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/63/65/37648c0c158dc222aba51c089eb3bdfa238e621674dc42d48706e639204f/psutil-7.2.2-cp36-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b0726cecd84f9474419d67252add4ac0cd9811b04d61123054b9fb6f57df6e9e", size = 156997, upload-time = "2026-01-28T18:15:27.794Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8e/13/125093eadae863ce03c6ffdbae9929430d116a246ef69866dad94da3bfbc/psutil-7.2.2-cp36-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fd04ef36b4a6d599bbdb225dd1d3f51e00105f6d48a28f006da7f9822f2606d8", size = 148972, upload-time = "2026-01-28T18:15:29.342Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/04/78/0acd37ca84ce3ddffaa92ef0f571e073faa6d8ff1f0559ab1272188ea2be/psutil-7.2.2-cp36-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:b58fabe35e80b264a4e3bb23e6b96f9e45a3df7fb7eed419ac0e5947c61e47cc", size = 148266, upload-time = "2026-01-28T18:15:31.597Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/b4/90/e2159492b5426be0c1fef7acba807a03511f97c5f86b3caeda6ad92351a7/psutil-7.2.2-cp37-abi3-win_amd64.whl", hash = "sha256:eb7e81434c8d223ec4a219b5fc1c47d0417b12be7ea866e24fb5ad6e84b3d988", size = 137737, upload-time = "2026-01-28T18:15:33.849Z" },
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ptyprocess"
|
||||||
|
version = "0.7.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pure-eval"
|
||||||
|
version = "0.2.3"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload-time = "2024-07-21T12:58:21.801Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pygments"
|
||||||
|
version = "2.20.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "quadnite-bot"
|
||||||
|
version = "0.1.0"
|
||||||
|
source = { editable = "." }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "deltabot-cli" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.dev-dependencies]
|
||||||
|
dev = [
|
||||||
|
{ name = "ipdb" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.metadata]
|
||||||
|
requires-dist = [{ name = "deltabot-cli", specifier = ">=8.1.0" }]
|
||||||
|
|
||||||
|
[package.metadata.requires-dev]
|
||||||
|
dev = [{ name = "ipdb", specifier = ">=0.13.13" }]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rich"
|
||||||
|
version = "15.0.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "markdown-it-py" },
|
||||||
|
{ name = "pygments" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "stack-data"
|
||||||
|
version = "0.6.3"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "asttokens" },
|
||||||
|
{ name = "executing" },
|
||||||
|
{ name = "pure-eval" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "traitlets"
|
||||||
|
version = "5.15.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/1b/22/40f55b26baeab80c2d7b3f1db0682f8954e4617fee7d90ce634022ef05c6/traitlets-5.15.0.tar.gz", hash = "sha256:4fead733f81cf1c4c938e06f8ca4633896833c9d89eff878159457f4d4392971", size = 163197, upload-time = "2026-05-06T08:05:58.016Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/da/98/a9937a969d018a23badfea0b381f66783649d48e0ea6c41923265c3cbeb3/traitlets-5.15.0-py3-none-any.whl", hash = "sha256:fb36a18867a6803deab09f3c5e0fa81bb7b26a5c9e82501c9933f759166eff40", size = 85877, upload-time = "2026-05-06T08:05:55.853Z" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wcwidth"
|
||||||
|
version = "0.7.0"
|
||||||
|
source = { registry = "https://pypi.org/simple" }
|
||||||
|
sdist = { url = "https://files.pythonhosted.org/packages/2c/ee/afaf0f85a9a18fe47a67f1e4422ed6cf1fe642f0ae0a2f81166231303c52/wcwidth-0.7.0.tar.gz", hash = "sha256:90e3a7ea092341c44b99562e75d09e4d5160fe7a3974c6fb842a101a95e7eed0", size = 182132, upload-time = "2026-05-02T16:04:12.653Z" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://files.pythonhosted.org/packages/41/52/e465037f5375f43533d1a80b6923955201596a99142ed524d77b571a1418/wcwidth-0.7.0-py3-none-any.whl", hash = "sha256:5d69154c429a82910e241c738cd0e2976fac8a2dd47a1a805f4afed1c0f136f2", size = 110825, upload-time = "2026-05-02T16:04:11.033Z" },
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user