Вот:
# -*- coding: utf-8 -*-
import vk_api
from vk_api.bot_longpoll import VkBotLongPoll, VkBotEventType
def main():
vk_session = vk_api.VkApi(token='#########################################')
longpoll = VkBotLongPoll(vk_session, '#####')
try:
vk_session.auth(token_only=True)
except vk_api.AuthError as error_msg:
print(error_msg)
return
for event in longpoll.listen():
if event.type == VkBotEventType.MESSAGE_NEW and event.to_me:
api.messages.send(peer_id=event.user_id, message='Привет!') !!!!Вот здесь мне выходит ошибка, что api не найдено
if __name__ == '__main__':
main()
Вот еще скрин консоли. Если код совсем худ, то плиз скиньте простой вариант на пайтоне.