Crosstyan
commited on
Commit
•
8a85b04
1
Parent(s):
5e761b4
README
Browse files
README.md
CHANGED
@@ -1,8 +1,25 @@
|
|
|
|
|
|
|
|
1 |
# Danbooru Public
|
2 |
|
|
|
|
|
|
|
3 |
Download from [danbooru public google cloud storage](https://console.cloud.google.com/storage/browser/danbooru_public/data?project=danbooru1).
|
4 |
Updated at 2023/11/30.
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
## See also
|
7 |
|
8 |
- [crosstyan/explore-danbooru](https://github.com/crosstyan/explore-danbooru)
|
|
|
1 |
+
---
|
2 |
+
---
|
3 |
+
|
4 |
# Danbooru Public
|
5 |
|
6 |
+
Danbooru database which including metadata for ["posts"](https://danbooru.donmai.us/wiki_pages/help:posts),
|
7 |
+
["tags"](https://danbooru.donmai.us/wiki_pages/help:tags) and ["artists"](https://danbooru.donmai.us/artists).
|
8 |
+
|
9 |
Download from [danbooru public google cloud storage](https://console.cloud.google.com/storage/browser/danbooru_public/data?project=danbooru1).
|
10 |
Updated at 2023/11/30.
|
11 |
|
12 |
+
Data are encoded with [JSON Lines](https://jsonlines.org/).
|
13 |
+
|
14 |
+
```bash
|
15 |
+
tar -xJf tags.tar.xz
|
16 |
+
tar -xJf artists.tar.xz
|
17 |
+
# posts.tar.br is compressed with brotli
|
18 |
+
# --use-compress-program might also works
|
19 |
+
# please note that the output is near 20GB
|
20 |
+
brotli --decompress --stdout posts.tar.br | tar xf -
|
21 |
+
```
|
22 |
+
|
23 |
## See also
|
24 |
|
25 |
- [crosstyan/explore-danbooru](https://github.com/crosstyan/explore-danbooru)
|