Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CharlesDardaman/blueskyfirehose
Simple golang firehose for Bluesky.
https://github.com/CharlesDardaman/blueskyfirehose
Last synced: 3 months ago
JSON representation
Simple golang firehose for Bluesky.
- Host: GitHub
- URL: https://github.com/CharlesDardaman/blueskyfirehose
- Owner: CharlesDardaman
- License: mit
- Created: 2023-04-18T23:39:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-11T16:44:44.000Z (11 months ago)
- Last Synced: 2024-08-01T01:27:35.651Z (5 months ago)
- Language: Go
- Size: 58.6 KB
- Stars: 47
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-atproto - Simple golang firehose for Bluesky
README
# blueskyfirehose
Simple golang firehose for Bluesky.# Usage
--mf
Only show posts by users with a minimum follower count of--likes
Show likes as well as posts--help / -h
Show command helpExamples:
```sh
go run . firehose --mf 100 --likes # show posts and likes by users with a minimum of 100 followers
```
## Without Authentication
```sh
go run . firehose
```## With Authentication
If it's the first time you need to enter your credentials. An App Password can be created at https://bsky.app/settings/app-passwords```sh
go run . firehose -authed someusername.bsky.social superpassword
```
If you have a custom domain, use the email address you used to sign up Bluesky instead.
After you've already run it once, it will save your credentials in a file called .bsky.auth in your home directory.
```sh
go run . firehose -authed
```# Acknowledgements
[Bluesky Social Github](https://github.com/bluesky-social/)