from django import template
from django.utils.html import conditional_escape
from django.utils.safestring import mark_safe
register = template.Library()
@register.filter(needs_autoescape=True)
def initial_letter_filter(text, autoescape=True):
first, other = text[0], text[1:]
if autoescape:
esc = conditional_escape
else:
esc = lambda x: x
result = '<strong>%s</strong>%s' % (esc(first), esc(other))
return mark_safe(result)
response = vk.wall.get(owner_id=man_id, post_id=a, count=1, sort='desc', offset=0)
ts = str(response['items'][0]['date'])
print(ts)
while True: #запускаем бесконечный цикл
man_id = str(-29534144) #id группы с которой будем брать посты и комментарии
postidlist = vk.wall.get(owner_id=man_id, count=1, offset=0) #получаем последний пост
a = str(postidlist['items'][0]['id']) #получаем id поста в виде цифры и записываем
comm = vk.wall.getComments(owner_id=man_id, post_id=a, count=1, sort='desc', offset=0) #Получаем последний комментарий
com_text = comm['items'][0]['text'] #вытаскиваем из полученного ответа только текст
print(com_text) #выводим комментарий
time.sleep(5) #засыпаем на 5 секунд