A wrapper for interacting with the AT Protocol API.
Project description
AT Protocol Python Library
A wrapper for interacting with the AT Protocol API, specifically for the Bluesky social network.
Note: There are some hard-coded Bluesky method names in this library, so the current version will not work with other AT Protocol implementations. The plan is to change this as new servers become available.
Getting Started
To install the library, run:
pip install pyatproto
Quickstart
import pyatproto as atproto
import os
ENDPOINT = os.environ.get("ATPROTO_ENDPOINT")
USERNAME = os.environ.get("ATPROTO_USERNAME")
PASSWORD = os.environ.get("ATPROTO_PASSWORD")
ap = atproto.AtProtoConfiguration(ENDPOINT, USERNAME, PASSWORD)
create_post = ap.create_post("My First Post")
print(create_post)
Example Scripts
- quickstart.py: Authenticate and create a post on Bluesky.
- crawler.py: Find the messages posted by each person a user follows, recursively (rate limits prevent this being used for crawling the whole network without adjusting the logic, however).
- unroll.py: Find the parent of a message for use with the bsky.link thread unrolling feature.
Contributing
Contributions are welcome, especially those that add more methods to the library. Please open an issue or pull request to contribute to the library.
License
This project is licensed under an MIT 0 License.
Contributors
- capjamesg
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
File details
Details for the file pyatproto-0.2.0.tar.gz
.
File metadata
- Download URL: pyatproto-0.2.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | add36e898f5396cfa19df32dc9c18b7b1ed74734cf1943b683e11dfad5ab28e0 |
|
MD5 | 3d2b5ec7e6939a4078f2e81c217db600 |
|
BLAKE2b-256 | 66a587d0bec6df0ad8a21fd52896992bb5c674c68fe5d6a2e45962282d8be995 |
File details
Details for the file pyatproto-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: pyatproto-0.2.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55e31aed68aa946f862d67c1f28268a3c8dd8c0ae47db2aa02102223197d17fd |
|
MD5 | db56f67270ec44d80248546a819b10e3 |
|
BLAKE2b-256 | 3fb9f021a44a4e829caf024433fc3956e8e9acb4799e73dcc5d15b363e9e75ff |