Skip to content

Commit 02861f5

Browse files
committed
Обновил автора проекта
1 parent 79a09be commit 02861f5

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 noxzion
3+
Copyright (c) 2025 ink-developer
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
---
1717
> ⚠️ **Дисклеймер**
18-
>
18+
>
1919
> * Это **неофициальная** библиотека для работы с внутренним API Max.
2020
> * Использование может **нарушать условия предоставления услуг** сервиса.
2121
> * **Вы используете её исключительно на свой страх и риск.**
@@ -72,7 +72,7 @@ async def handle_message(message: Message) -> None:
7272
@client.on_start
7373
async def handle_start() -> None:
7474
print("Клиент запущен")
75-
75+
7676
# Получение истории сообщений
7777
history = await client.fetch_history(chat_id=0)
7878
if history:
@@ -83,38 +83,38 @@ async def handle_start() -> None:
8383

8484
async def main() -> None:
8585
await client.start()
86-
86+
8787
# Работа с чатами
8888
for chat in client.chats:
8989
print(f"Чат: {chat.title}")
90-
90+
9191
# Отправка сообщения
9292
message = await client.send_message(
93-
"Привет от PyMax!",
94-
chat.id,
93+
"Привет от PyMax!",
94+
chat.id,
9595
notify=True
9696
)
97-
97+
9898
# Редактирование сообщения
9999
await asyncio.sleep(2)
100100
await client.edit_message(
101-
chat.id,
102-
message.id,
101+
chat.id,
102+
message.id,
103103
"Привет от PyMax! (отредактировано)"
104104
)
105-
105+
106106
# Удаление сообщения
107107
await asyncio.sleep(2)
108108
await client.delete_message(chat.id, [message.id], for_me=False)
109-
109+
110110
# Работа с диалогами
111111
for dialog in client.dialogs:
112112
print(f"Диалог: {dialog.last_message.text}")
113-
113+
114114
# Работа с каналами
115115
for channel in client.channels:
116116
print(f"Канал: {channel.title}")
117-
117+
118118
await client.close()
119119

120120
if __name__ == "__main__":
@@ -123,7 +123,7 @@ if __name__ == "__main__":
123123

124124
## Документация
125125

126-
[WIP](https://noxzion.github.io/)
126+
[WIP](https://ink-developer.github.io/)
127127

128128
## Лицензия
129129

@@ -135,7 +135,7 @@ if __name__ == "__main__":
135135

136136
## Авторы
137137

138-
- **[noxzion](https://github.com/noxzion)** — Оригинальный автор проекта
138+
- **[ink-developer](https://github.com/ink-developer)** — Оригинальный автор проекта
139139
- **[ink](https://github.com/ink-developer)** — Главный разработчик, исследование API и его документация
140140

141141
## Контрибьюторы

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ uv add -U maxapi-python
3939

4040
## Ссылки
4141

42-
- [GitHub](https://github.com/noxzion/PyMax)
42+
- [GitHub](https://github.com/ink-developer/PyMax)
4343
- [PyPI](https://pypi.org/project/pymax/)
44-
- [Issues](https://github.com/noxzion/PyMax/issues)
44+
- [Issues](https://github.com/ink-developer/PyMax/issues)

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,6 @@ markdown_extensions:
150150
extra:
151151
social:
152152
- icon: fontawesome/brands/github
153-
link: https://github.com/noxzion/PyMax
153+
link: https://github.com/ink-developer/PyMax
154154
- icon: fontawesome/brands/python
155155
link: https://pypi.org/project/maxapi-python

src/pymax/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
User,
2929
)
3030

31-
__author__ = "noxzion"
31+
__author__ = "ink-developer"
3232

3333
__all__ = [
3434
# Перечисления и константы

0 commit comments

Comments
 (0)