bsky
Client library to access Bluesky
For more detailed usage instructions, please refer to the documentation for each module.
- bsky.client : Client of bluesky.
- bsky.auth : Authenticate management.
License:
BSL-1.0
Examples:
import bsky; import std.stdio, std.process; auto client = new Bluesky; client.login(environment.get("BSKYUT_LOGINID"), environment.get("BSKYUT_LOGINPASS")); scope (exit) client.logout(); writefln("Hello! My name is %s.", client.profile.displayName);
- public import
bsky.client
;
public importbsky.user
;
public importbsky.post
;
public importbsky.data
;
public importbsky.auth
;