chitose.app.bsky.graph package
Submodules
chitose.app.bsky.graph.block module
chitose.app.bsky.graph.follow module
chitose.app.bsky.graph.get_blocks module
chitose.app.bsky.graph.get_followers module
chitose.app.bsky.graph.get_follows module
chitose.app.bsky.graph.get_mutes module
chitose.app.bsky.graph.mute_actor module
chitose.app.bsky.graph.unmute_actor module
Module contents
- class chitose.app.bsky.graph.Graph_(service: str, headers: dict[str, str])
Bases:
object- get_blocks(limit: int | None = None, cursor: str | None = None)
Who is the requester’s account blocking?
- get_followers(actor: str, limit: int | None = None, cursor: str | None = None)
Who is following an actor?
- get_follows(actor: str, limit: int | None = None, cursor: str | None = None)
Who is an actor following?
- get_mutes(limit: int | None = None, cursor: str | None = None)
Who does the viewer mute?
- mute_actor(actor: str)
Mute an actor by did or handle.
- unmute_actor(actor: str)
Unmute an actor by did or handle.