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
sbutterfly --method validate
# Post a message
sbutterfly --plugins twitter --method execute --message "Hello from Butterfly!"
sbutterfly --plugins mastodon --method execute --message "Hello from Butterfly!"
sbutterfly --plugins bluesky --method execute --message "Hello from Butterfly!"
# or
sbutterfly --method 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
uv sync
# Run tests
make test
# Run linting
make lint
make type
Using as a Library
from 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-1.2.2.tar.gz.
File metadata
- Download URL: sbutterfly-1.2.2.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5e91e42afca003df1ab3769f7c045b21114eb4dd62776d2a448ea72f1730981
|
|
| MD5 |
905a06c7abe9e3bf525141154766c56a
|
|
| BLAKE2b-256 |
8198f777da0579e7fc0ddfaff86316ee99a7e9363cb2277527184157e8013011
|
File details
Details for the file sbutterfly-1.2.2-py3-none-any.whl.
File metadata
- Download URL: sbutterfly-1.2.2-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1febd1888ef84f1b79da3f12c7592243f472ce96d481c23f963d61b1e81e9267
|
|
| MD5 |
0e7384b5967b9248fb47a9fc1452702b
|
|
| BLAKE2b-256 |
77b8c907f229536e5f6c13181bb3831cb910bd46ae97624d9accc697b2ee436b
|