Skip to content

tools for posting / deleting things from bsky, in python

License

Notifications You must be signed in to change notification settings

sirodoht/atprototools

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

atprototools

A couple of functions for making/deleting posts, packaged so you can pip install and go.

Usage:

pip install atprototools
export BSKY_USERAME="yourname.bsky.social"
export PASSWORD="yourpassword"
import atprototools as atpt
import os

USERNAME = os.environ.get("BSKY_USERNAME")
PASSWORD = os.environ.get("PASSWORD")

atpt.login(USERNAME, PASSWORD)
atpt.post_skoot("hello world from atprototools")
latest_skoots = atpt.get_latest_n_skoots('klatz.co',1).content
carfile = atpt.get_car_file().content

PEP8 formatted; use autopep8.

changelog

0.0.7: getRepo (car files) and get_latest_n_skoots

Thanks to

  • alice

About

tools for posting / deleting things from bsky, in python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.0%
  • Shell 2.0%