KaraKaraWitch
commited on
Commit
•
a15899d
1
Parent(s):
2cada82
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,48 @@
|
|
1 |
-
---
|
2 |
-
license: wtfpl
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: wtfpl
|
3 |
+
---
|
4 |
+
# Bluesky Aozora Dive
|
5 |
+
|
6 |
+
... Is an archive of atproto's firehose (and relatedly bluesky) streams.
|
7 |
+
|
8 |
+
[Repo currently up for marking reasons.]
|
9 |
+
|
10 |
+
## Data Formats
|
11 |
+
|
12 |
+
We present data as is with minimum enrichment.
|
13 |
+
|
14 |
+
- Likes authors are enriched with their author and usernames. The post themselves are not enriched since that will incur additional requests which can be quite heavy.
|
15 |
+
- Any cryptographic CIDs are stripped as they do not possess any useful textual data.
|
16 |
+
|
17 |
+
Usernames are constructed in the following format:
|
18 |
+
```json
|
19 |
+
{
|
20 |
+
"did": "did:plc:5pg23j2334q5gcidzk6ps57c",
|
21 |
+
"uns": "phietje.bsky.social"
|
22 |
+
}
|
23 |
+
```
|
24 |
+
|
25 |
+
do note that usernames may be a list of usernames if the `did` user has morethan 1 username.
|
26 |
+
|
27 |
+
## Various Notes
|
28 |
+
|
29 |
+
### Terms
|
30 |
+
|
31 |
+
`did` -> `Decentralized ID`. Consider this as `ID` for most cases and it points to a unique ID.
|
32 |
+
`uns` -> `Usernames`. Either can be a single string or a list of usernames. Do not blindly assume this is going to be only a string!
|
33 |
+
|
34 |
+
### Recommendations
|
35 |
+
|
36 |
+
For getting a more proper stream of posts, it's recommended to keep a track of users + posts in a index cache.
|
37 |
+
|
38 |
+
Then again, you can just fetch a list from bsky api directly lol.
|
39 |
+
|
40 |
+
Do consider reading up on bsky docs and atproto docs.
|
41 |
+
|
42 |
+
### Deletions
|
43 |
+
|
44 |
+
UnActions ("unpost","unlike","unrepost") only contains `rid` as the record key.
|
45 |
+
|
46 |
+
### License
|
47 |
+
|
48 |
+
For everyone out there, data is meant to be free unlike some previous license I did. This is free for grabs aka `wtfpl` if anyone wants to know.
|