Metadata-Version: 2.4
Name: sopel-bsky
Version: 0.2.0
Summary: Fetch info about Bluesky links in your IRC conversations using Sopel.
Author-email: dgw <dgw@technobabbl.es>
License-Expression: EFL-2.0
Project-URL: Homepage, https://github.com/dgw/sopel-bsky
Project-URL: Bug Tracker, https://github.com/dgw/sopel-bsky/issues
Keywords: sopel,plugin,bot,irc
Platform: Linux x86, x86-64
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Communications :: Chat :: Internet Relay Chat
Requires-Python: <3.14,>=3.8
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: sopel>=8.0
Requires-Dist: atproto==0.0.62; python_version < "3.9"
Requires-Dist: atproto==0.0.63; python_version >= "3.9"
Requires-Dist: pydantic~=2.10.0; python_version < "3.9"
Requires-Dist: pydantic>=2.11; python_version >= "3.9"
Dynamic: license-file

# sopel-bsky

Fetch info about Bluesky links in your IRC conversations using Sopel.

## Installing

Releases are hosted on PyPI, so after installing Sopel, all you need is `pip`:

```shell
$ pip install sopel-bsky
```

Please note that the `atproto` package maintains a strict Python version policy,
so installation might not be possible on a given Python release even if Sopel
itself is compatible with it. Drop by [GitHub][gh-sopel-bsky] and open a PR or
issue if you notice that the dependencies are outdated.

[gh-sopel-bsky]: https://github.com/sopel-irc/sopel-bsky

## Configuring

The easiest way to configure `sopel-bsky` is via Sopel's configuration
wizard—simply run `sopel-plugins configure bsky` and enter the values for which
it prompts you.

### Account login

At present, you need to give the plugin a Bluesky account for which you don't
mind storing the `handle` & `password` in Sopel's config file in plain text.
It's recommended to create a new account specifically for your bot, instead of
using your real account's credentials (if you have one).

### Output behavior

These settings control how `sopel-bsky` displays skeet contents.

#### `newline_replacement`

_Default value:_ `"⏎"`

Runs of one or more newlines in a skeet's text will be replaced with this
string, wrapped in spaces. [For example][wilw-newline-test], the default value
of `⏎` is used like this:

```
<Sopel> [skeet] Wil Wheaton (@wilwheaton.net) | 6 hours, 28 minutes ago |
        Ranking Star Wars movies is a thing? ⏎ Okay, I'll get in on this. ⏎ 1.
        Empire Strikes Back ⏎ 2. Star Wars 1977 theatrical release ⏎ 3. Rogue
        One ⏎ 4. Return of the Jedi (because I was 11) ⏎ Everything else is
        somewhere between "meh" and "why. why. y u do dis?" [sad kitten dot jpg]
```

The special value `off` will disable newline substitution. Note that leading &
trailing spaces in the value you enter will be ignored; this is a limitation of
Sopel's config format and parser.

[wilw-newline-test]: https://bsky.app/profile/wilwheaton.net/post/3m6iac7rms22v

## Maintenance Note

This plugin as it exists now is mostly a proof of concept, just to have some
minimal level of parity with the Sopel ecosystem's support for Twitter (it is
_not_ called X!) and Mastodon.

Showing details for links to Bluesky users and posts was tested and confirmed
working as of the last release's publish date. The plugin is published in the
hope that it will be useful; in case of breakage or needed improvements, pull
requests are always welcome.

## Changelog

### 0.2.0

Added:

* Configurable replacement character for newlines in skeet text (#11, #12)

Fixed:

* Fix handling of skeet links using DID instead of handle (#10)

General:

* Updated `atproto` library version for Python 3.9+ (#6)
* Require newer, faster-to-start `pydantic` on supported Python versions (#6)
* Lazy-load `atproto` at plugin startup (#7)


### 0.1.2

* Bumped `atproto` library version
* Fixed parsing ISO-format timestamps without milliseconds
* Meta-updates (package metadata, workflows)

**Note:** This release doesn't support Python 3.14 (which became stable earlier
in October 2025), because `atproto` doesn't support it yet.


### 0.1.1

Bumped `atproto` library version. Skeets with video (a recently added feature)
no longer cause exceptions.


### 0.1.0

First release of `sopel-bsky`.
