0

i am trying to download the latest post of a profile using "Instaloader" in Python. I have found something about hashtags, but not about profiles. So how do i download only the latest post of a profile? Thanks in advance!

señor.woofers
  • 119
  • 2
  • 8

1 Answers1

0

The documentation has a section on profiles.

From the examples:

L = Instaloader()
profile = Profile.from_username(L.context, USERNAME)

You can then use the get_posts method to get a profile's posts, including the latest one.

Altareos
  • 843
  • 6
  • 13