I try to get stats from post in current month. I have only 2 posts (rells and stadart publication). But this code gives me posts from current and past month
from auth_data import login, password
cl = Client()
cl.login(login, password)
like_count = cl.insights_media_feed_all("ALL", "ONE_MONTH", "LIKE_COUNT", 6)
print(like_count == save_count)
print(like_count, "\n")
print(like_count[0]['node']["comment_count"])