OlegYurchik / pyInstagram

This is a simple and easy-to-use library for interacting with the Instagram. The library works through the web interface of the Instagram and does not depend on the official API
MIT License
232 stars 49 forks source link

Список людей, которые лайкнули пост #24

Closed ohld closed 5 years ago

ohld commented 5 years ago

Привет. Как с помощью библиотеки можно получить список людей, которые пролайкали пост? А прокомментировали?

Спасибо.

T3hVermili0n commented 5 years ago

Привет. Как с помощью библиотеки можно получить список людей, которые пролайкали пост? А прокомментировали?

Спасибо.

Ну все же есть в readme, примеры и все прочее.

OlegYurchik commented 5 years ago

Вот пример кода:

agent = AgentAccount("username", "password")
media = Media("shortcode")
likes = agent.get_likes(media, count=900)
ohld commented 5 years ago

спасибо