Skip to main content

Barkr

Barkr1 is a social media cross-posting tool written in Python: set it up and never worry about manually posting the same message to multiple channels ever again!

With Barkr you can setup a series of channels (e.g. social media accounts) to read messages from and / or post messages to. You can mix and match read / write modes, and add multiple accounts of the same type of channel as well without worrying that the same message will be re-posted to a channel it comes from.

Note that Barkr is limited to text posts only. Want to see that change? Start a discussion on a new issue!

Motivation

I wrote Barkr for a personal use case after noting how much fragmentation there currently is (as of 2023) in the social media space, as a way to reduce the cost of engaging with multiple social media platforms, and also as a (very simple) way to practice using threads in Python.

Installation

Use the package manager pip to install barkr.

pip install barkr

Usage

Create a Python script and specify all the channels you want to use. Channel connections are present in the barkr.connections module.

A simple script showcasing how to set up three Mastodon connections with multiple modes that can run in the background is outlined below:

from barkr.main import Barkr

from barkr.connections import (
    ConnectionMode,
    BlueskyConnection,
    DiscordConnection,
    MastodonConnection,
    RSSConnection,
    TelegramConnection,
    TwitterConnection,
    WebhookConnection,
)

from barkr.models import Message

barkr = Barkr(
    [
        # Barkr will read new messages posted by this account, and queue them to
        # other accounts on write mode, but will not post anything to it.
        MastodonConnection(
            "Read only connection",
            [ConnectionMode.READ],
            "<ACCESS TOKEN HERE>",
            "<INSTANCE URL HERE>",
        ),
        # Barkr will write queued messages to this account, but will not read anything
        # new posted to this account or queue anything from this account to other ones.
        DiscordConnection(
            "Write only connection",
            [ConnectionMode.WRITE],
            "<BOT TOKEN ID HERE>",
            "<CHANNEL ID HERE>",
        ),
        # Barkr will read new messages from this account to be queued onto others, and will
        # post new messages from other channels into this one as well.
        BlueskyConnection(
            "R/W connection",
            [ConnectionMode.READ, ConnectionMode.WRITE],
            "<BLUESKY HANDLE HERE>",
            "<PASSWORD / APP PASSWORD HERE>",
        ),
        # Another example using Twitter -- note that the TwitterConnection only
        # supports write-only mode through the Twitter V2 API
        TwitterConnection(
            "Write only Twitter Connection",
            [ConnectionMode.WRITE],
            "<CONSUMER KEY HERE>",
            "<CONSUMER SECRET HERE>",
            "<ACCESS KEY HERE>",
            "<ACCESS SECRET HERE>",
            "<BEARER TOKEN HERE>",
        ),
        # One more, showcasing a Telegram write-only connection
        TelegramConnection(
            "Write only Telegram connection",
            [ConnectionMode.WRITE],
            "<TELEGRAM BOT TOKEN HERE>",
            "<TELEGRAM CHAT / CHANNEL ID HERE>",
        ),
        # You can also read from an RSS feed!
        RSSConnection(
            "Read only RSS connection",
            [ConnectionMode.READ],
            "<RSS FEED URL HERE>"
        ),
        # And post messages to a custom webhook as well!
        WebhookConnection(
            "Write only Webhook connection",
            [ConnectionMode.WRITE],
            "<WEBHOOK URL HERE>",
        ),
    ]
)

# Blocking: will start reading and writing threads to keep the connections in sync
barkr.start()

# Non-blocking, if you only need to write messages to your connections
barkr.write_message(
    Message(
        id="123456",
        message="Hello, world!",
    )
)

Always keep in mind proper secret management practices when using Barkr: instead of hardcoding access tokens / cookies / user and passwords, use tools like environment variables, dotenv or other secret managers!

Connection groups

By default, every read-mode connection in a Barkr instance relays messages to every write-mode connection (minus the message's own source, if read-write).

You can optionally assign each connection to a group to create independent pipelines/relays within the same Barkr instance.

Connections only relay messages to other connections that share the same group. The group argument is optional: when omitted, the connection is placed in a default group, i.e. if you don't specify any groups, all messages from read-mode connections will be relayed to all write-mode connections.

Connection names must be unique within a Barkr instance, even across different groups. Duplicate names raise ValueError during initialization. Each destination connection owns its reply mappings; these mappings are not shared between connection objects.

from barkr.main import Barkr
from barkr.connections import ConnectionMode, BlueskyConnection, MastodonConnection

barkr = Barkr(
    [
        # Group "account-1": these two only sync with each other.
        BlueskyConnection(
            "Bluesky account 1",
            [ConnectionMode.READ, ConnectionMode.WRITE],
            "<HANDLE 1>",
            "<PASSWORD 1>",
            group="account-1",
        ),
        MastodonConnection(
            "Mastodon account 1",
            [ConnectionMode.READ, ConnectionMode.WRITE],
            "<ACCESS TOKEN 1>",
            "<INSTANCE URL 1>",
            group="account-1",
        ),
        # Group "account-2": fully isolated from "account-1".
        BlueskyConnection(
            "Bluesky account 2",
            [ConnectionMode.READ, ConnectionMode.WRITE],
            "<HANDLE 2>",
            "<PASSWORD 2>",
            group="account-2",
        ),
        MastodonConnection(
            "Mastodon account 2",
            [ConnectionMode.READ, ConnectionMode.WRITE],
            "<ACCESS TOKEN 2>",
            "<INSTANCE URL 2>",
            group="account-2",
        ),
    ]
)

barkr.start()

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Contributions for issues that are already open by maintainers are welcome and encouraged.

Please make sure to update tests as appropriate; a minimum coverage of 80% is expected (and enforced by Github Actions!).

License

This project is licensed under the GNU Affero General Public License v3.0.

  1. "Barkr" (missing "e") as in "entity that barks". See: dogs.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

barkr-0.16.0.tar.gz (43.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

barkr-0.16.0-py3-none-any.whl (54.1 kB view details)

Uploaded Python 3

File details

Details for the file barkr-0.16.0.tar.gz.

File metadata

  • Download URL: barkr-0.16.0.tar.gz
  • Upload date:
  • Size: 43.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for barkr-0.16.0.tar.gz
Algorithm Hash digest
SHA256 c207bdb13a69d394ff816bba9e801d209418262ff05e99f87796393820919072
MD5 9876b8ab63877d1eb90c8bc4c0e6cfd2
BLAKE2b-256 36031a5aae909e01a72bdf0e683cc913b33eb737a3db7cb331e1111ec188ce66

See more details on using hashes here.

File details

Details for the file barkr-0.16.0-py3-none-any.whl.

File metadata

  • Download URL: barkr-0.16.0-py3-none-any.whl
  • Upload date:
  • Size: 54.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for barkr-0.16.0-py3-none-any.whl
Algorithm Hash digest
SHA256 73835b0339950e0c5d153062176665ac9d11d09734e224530427666b83e3067e
MD5 ccc06ee98b058d63663a2348d2e35489
BLAKE2b-256 eb7993a793f7735a31ac227580090c962877b2bc0c3ed3d6703c96b7af9b34e5

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.16.0 This release

2 files

0.15.0

2 files

0.14.6

2 files

0.14.5

2 files

0.14.4

2 files

0.14.3

2 files

0.14.2

2 files

0.14.1

2 files

0.14.0

2 files

0.13.1

2 files

0.13.0

2 files

0.12.0

2 files

0.11.2

2 files

0.11.1

2 files

0.11.0

2 files

0.10.10

2 files

0.10.9

2 files

0.10.8

2 files

0.10.7

2 files

0.10.6

2 files

0.10.5

2 files

0.10.4

2 files

0.10.3

2 files

0.10.2

2 files

0.10.1

2 files

0.10.0

2 files

0.9.8

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

0.8.11

2 files

0.8.10

2 files

0.8.9

2 files

0.8.8

2 files

0.8.7

2 files

0.8.6

2 files

0.8.5

2 files

0.8.4

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.1

2 files

0.6.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page