API for BlueSky social network
Project description
blueskysocial
blueskysocial is a Python library for managing social media posts and images. It provides a Client class for interacting with social media platforms, as well as classes for representing posts and images.
Installation
To install blueskysocial, you can use pip:
pip install blueskysocial
Usage
Making an individual post
from blueskysocial import Client, Post, Image
client = Client(user_name, password)
client.authenticate()
image = Image('path/to/image.jpg', alt_text='This is an image.')
post = Post('Hello, world!', 'This is my first post.', images=[image])
client.post(post)
Posting threads
from blueskysocial import Client, Post, Image
client = Client(user_name, password)
client.authenticate()
image = Image('path/to/image.jpg', alt_text='This is an image.')
post = Post('Hello, world!', 'This is my first post.', images=[image])
second_post = Post('Another Post')
client.post_thread([post,second_post])
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
blueskysocial is licensed under the MIT License. See LICENSE for more information.
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
blueskysocial-1.3.0.tar.gz
(9.0 kB
view details)