Skip to content

Instantly share code, notes, and snippets.

@nedbat

nedbat/ds.py Secret

Created July 19, 2023 09:38
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
class Model:
"""\
Insights for instagram posts, fetched from the ig media insights call [1].
Depending on the type of post, different insights are returned. This is only the most recent insights,
the InstagramPostInsight[2] model stores all the insights.
[1]: https://developers.facebook.com/docs/instagram-api/reference/ig-media/insights
[2]: `takumi.models.InstagramPostInsight`"""
import textwrap
print(textwrap.dedent(Model.__doc__))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment