-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyboards.py
More file actions
53 lines (44 loc) · 1.67 KB
/
keyboards.py
File metadata and controls
53 lines (44 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from aiogram.utils.keyboard import InlineKeyboardBuilder
from aiogram import types
def main_kb():
builder = InlineKeyboardBuilder()
builder.row(types.InlineKeyboardButton(
text="♦️ Начать пользоваться", callback_data="begin")
)
builder.row(types.InlineKeyboardButton(
text="🐿️ Дупло Белки",
url="https://t.me/+VWlXwUUOzR8wZTY1")
)
builder.row(types.InlineKeyboardButton(
text="🩸 strnq's lounge",
url="tg://resolve?domain=bystrnq")
)
builder.row(types.InlineKeyboardButton(
text="Все вопросы сюда",
url="https://t.me/+VWlXwUUOzR8wZTY1"
))
return builder.as_markup()
def begin_kb():
builder = InlineKeyboardBuilder()
builder.row(types.InlineKeyboardButton(
text="*️⃣ Session ID", callback_data="change:1")
)
return builder.as_markup()
def ref_kb():
builder = InlineKeyboardBuilder()
builder.row(types.InlineKeyboardButton(
text="▶️ Создать", callback_data="createref")
)
return builder.as_markup()
def ref_asort_kb():
builder = InlineKeyboardBuilder()
builder.row(types.InlineKeyboardButton(
text="🍉 Купить смену ника (1 реф валюта)", callback_data="buy:1")
)
builder.row(types.InlineKeyboardButton(
text="🥳 Промокод на 5 активаций (5 реф валют)", callback_data="buy:2")
)
builder.row(types.InlineKeyboardButton(
text="🥨 Безлимит в боте (100 реф валют)", callback_data="buy:3")
)
return builder.as_markup()