start_message
. Его значение - два словаря, один с ключом RU, другой EN, или какие там еще. Изначально спрашиваете у пользователя, какой язык нужен, сохраняете его выбор. В дальнейшем, при получении сообщения от пользователя, выбираете соответствующий элемент из словаряmessages = {'start_message': {'ru': 'Привет', 'en': 'Hello'}}
@bot.message_handler()
def start_message(message):
bot.send_message(message.chat.id, messages['start_message'][user_locale])
import discord
intents = discord.Intents.default()
intents.members = True
# Somewhere else:
# client = discord.Client(intents=intents)
# or
# from discord.ext import commands
# bot = commands.Bot(command_prefix='!', intents=intents)
with open("banlist.txt", "a") as CheckBanUsers:
id = CheckBanUsers.readlines()
a
открыт, если нужно прочитать с него что-то?readlines
оставит символы переноса строкwith open("banlist.txt", "r") as CheckBanUsers:
banned_ids = f.read().splitlines()
if str(invite_id) in banned_ids:
@bot.channel_post_handler(filters)
name_case - падеж имен, там ничего про реализацию не написано
•именительный – nom,
•родительный – gen,
•дательный – dat,
•винительный – acc,
•творительный – ins,
•предложный – abl.
По умолчанию nom.
weather = mgr.weather_at_place('London,GB')
print(weather.weather.weather_code)
U+1F32B
weather_emojis = {721: '\U0001F32B', 500: '\U00001111'} # и тд
emo = weather_emojis[w.weather_code]
<body>
<span class="vote-button" data-action="upvote">+</span>
<span class="vote-button" data-action="downvote">-</span>
<script>
$(document).ready(function () {
$(".vote-button").click(function () {
var action = $(this).data("action");
$.ajax({
type: "POST",
url: "api/vote",
data: {
action: action,
postid: postid
}
});
});
});
</script>
</body>