``` from pygram import PyGram pygram = PyGram() comments = pygram.get_comments(post, limit=10) for comment in comments: print(comment) ``` 