Виноградов,
from vk_api import VkApi
from vk_api.bot_longpoll import VkBotLongPoll, VkBotEventType
group_id = "*****"
TOKEN = "*****"
vk_session = VkApi(token=TOKEN)
longpoll = VkBotLongPoll(vk_session, group_id)
vk = vk_session.get_api()
def main():
for event in longpoll.listen():
if event.type == VkBotEventType.MESSAGE_NEW and event.from_chat:
chat_id = event.chat_id
print(chat_id)
if __name__ == '__main__':
main()
Спомощью этого кода , можно узнать из какой беседы пришло сообщение ( id ) в консоли