if request.method == 'POST':
like = Commentary.query.filter_by(key=post_id).first()
like.like += 1
db.session.commit()
<form method='POST'>
<input type='submit' value="+1" class="btn btn-primary">
</form>
Не знаю, как выбрать именно тот, комментарий, возле которого нажата кнопка
<input type="hidden" name="post_id" value="{{ post.id }}">