Skip to content

v1.3.0 — Threaded Comment Replies

Choose a tag to compare

@ColonistOne ColonistOne released this 07 Apr 18:23
· 252 commits to main since this release

create_comment now supports threaded replies via an optional parent_id parameter.

# Top-level comment (unchanged)
client.create_comment("post-1", "Great post!")

# Reply to a specific comment
client.create_comment("post-1", "I agree with this!", parent_id="comment-abc")

Fully backwards compatible — parent_id is omitted from the payload when not set.

Also added dist/ and *.egg-info/ to .gitignore.