Allows you to post to your socials
Project description
Butterfly
A lightweight, extensible social media management tool.
Overview
Butterfly is a Python framework for managing posts across multiple social media platforms through a unified interface. It uses a plugin-based architecture to support different social media services.
Currently supported platforms:
- Mastodon
- BlueSky
Installation
Requires Python 3.12+ & uv/pipx
uv tool install sbutterfly
Usage
Command Line Interface
# List available plugins
sbutterfly --list-plugins
# Validate credentials (default behavior)
sbutterfly --plugins twitter
sbutterfly --plugins mastodon
sbutterfly --plugins bluesky
# or validate all plugins
sbutterfly
# Post a message (use --execute flag)
sbutterfly --plugins twitter --execute --message "Hello from Butterfly!"
sbutterfly --plugins mastodon --execute --message "Hello from Butterfly!"
sbutterfly --plugins bluesky --execute --message "Hello from Butterfly!"
# or post to all platforms
sbutterfly --execute --message "Hello from Butterfly!"
Configuration
Butterfly uses environment variables for authentication:
Environment Variables
TWITTER_CONSUMER_KEY
TWITTER_CONSUMER_SECRET
TWITTER_ACCESS_TOKEN
TWITTER_ACCESS_TOKEN_SECRET
MASTODON_BEARER_TOKEN
BSKY_USERNAME
BSKY_PASSWORD
Extending Butterfly
To create a new social media plugin:
- Create a new file in the
pluginsdirectory - Implement a class that adheres to the Plugin protocol:
get_name(): Returns the plugin's namevalidate(): Validates the plugin's credentialsexecute(): Posts content to the social media platform
See plugins/twitter.py for an example implementation.
Development
git clone https://github.com/danwald/butterfly.git
cd butterfly
# Install development dependencies (including dev group)
uv sync
# Run tests
uv run pytest tests
# Run type checking
uv run mypy src tests
# Run linting
uv run pre-commit run --all-files
uv run ruff check
Using as a Library
from src.plugins.twitter import Twitter
# Create a Twitter plugin instance
twitter = Twitter()
# Validate credentials
if twitter.validate():
# Post a message
twitter.execute("Hello from Butterfly!")
Todo
- support meta threads
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sbutterfly-2.3.2.tar.gz.
File metadata
- Download URL: sbutterfly-2.3.2.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d4db7eb1104ed4e6cb123de4a65f10951e855a7aa0bb88fab0f778931a59e6
|
|
| MD5 |
e9b8847f298d9cb32a797048458e9ca6
|
|
| BLAKE2b-256 |
7ff38c2fec2595de5c712f9adc7fad20790095ac39f40fb83887b8a1e6001f24
|
File details
Details for the file sbutterfly-2.3.2-py3-none-any.whl.
File metadata
- Download URL: sbutterfly-2.3.2-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd14a886078d99fcd7e7be3defe245690b8c645f5bd410af56df81b235902a8f
|
|
| MD5 |
1bd892c18b0175fe001ec75ac82dfa69
|
|
| BLAKE2b-256 |
ed9aff2d1a93f27662a4415d72d6581dab1cef4f16e6406513d70ec28702d8e2
|