bsky

Client library to access Bluesky
For more detailed usage instructions, please refer to the documentation for each module.
Authors: SHOO
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 import bsky.user;
public import bsky.post;
public import bsky.data;
public import bsky.auth;