Skip to main content

Tiny CLI to post simultaneously to Mastodon and Bluesky

Project description

Not my ex PyPI Tests PyPI - Python Version

Tiny CLI to post simultaneously to Mastodon and Bluesky.

Obviously, based on cuducos/from-my-ex.

It supports:

  • Post status updates to both networks with a simple CLI command
  • Posting with images
  • Including alt text for images
  • Setting post language

It does not support:

  • Tagging other users (they would have different IDs and servers in each platform)

Getting started

Requirements

  • Python 3.9 or newer
  • uv Python package manager

Environment variables

To post to Bluesky
Name Description Example Default value
NOT_MY_EX_BSKY_AGENT Bluesky instance "https://bsky.social" "https://bsky.social"
NOT_MY_EX_BSKY_EMAIL Email used in Bluesky "cuducos@mailinator.com" None
NOT_MY_EX_BSKY_PASSWORD Password used in Bluesky As created in App Passwords. None

Not setting NOT_MY_EX_BSKY_EMAIL or NOT_MY_EX_BSKY_PASSWORD disables posting to Bluesky.

To post to Mastodon
Name Description Example Default value
NOT_MY_EX_MASTODON_INSTANCE Mastodon instance "https://tech.lgbt" "https://mastodon.social"
NOT_MY_EX_MASTODON_TOKEN Mastodon access token Go to your Settings, Development and then create an app to get the access token. Select the write:statuses and write:media scopes. None

Not setting NOT_MY_EX_MASTODON_TOKEN disables posting to Mastodon.

Install

$ pip install not-my-ex

Usage

CLI

$ not-my-ex "Magic, madness, heaven, sin" --images /tmp/1989.gif

You can skip --images or pass multiple images (e.g. --images taylor.jpg --images swift.gif).

API

from asyncio import gather

from httpx import AsyncClient

from not_my_ex.bluesky import Bluesky
from not_my_ex.mastodon import Mastodon
from not_my_ex.media import Media
from not_my_ex.post import Post


async def main():
    media_tasks = tuple(
        Media.from_img(path, alt=alt)
        for path, alt in (("taylor.jpg", "Taylor"), ("swift.jpg", "Swift"))
    )
    media = await gather(*media_tasks)

    post = Post(text="Magic, madness, heaven, sin", media=media, lang="en")
    async with AsyncClient() as http:
        post_tasks = tuple(cls(http).post(post) for cls in (Bluesky, Mastodon))
        await gather(*post_tasks)

In Post, both media and lang are optional. In Media, alt is optional.

Contributing

The tests include Ruff and Mypy:

$ uv run python -m pytest

Project details


Download files

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

Source Distribution

not_my_ex-0.0.7.tar.gz (58.2 kB view details)

Uploaded Source

Built Distribution

not_my_ex-0.0.7-py3-none-any.whl (35.9 kB view details)

Uploaded Python 3

File details

Details for the file not_my_ex-0.0.7.tar.gz.

File metadata

  • Download URL: not_my_ex-0.0.7.tar.gz
  • Upload date:
  • Size: 58.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for not_my_ex-0.0.7.tar.gz
Algorithm Hash digest
SHA256 1928582c22edab3d7a3821be916c3afbce3f8122d3c426c4104b53c28b5a78d4
MD5 49352a2fe2aa64aed4c91631b06e4e32
BLAKE2b-256 d6db77f2a252a774af295d9ef3f1c2131119bb7d9f76caee58a784a0d187a61e

See more details on using hashes here.

File details

Details for the file not_my_ex-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: not_my_ex-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 35.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for not_my_ex-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 9c575fdba79a2ada19916ddef663f5579bafd4863d33902cda50b96288128a51
MD5 2983b0c25c41efa28ef3754e8c3a7c82
BLAKE2b-256 742ee2fb07cf637f0d0130271b3f10dea725dd6cdca0a70aa94689f460d3bc34

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page