Datasets:
Tags:
Not-For-All-Audiences
License:
File size: 1,858 Bytes
41259f2 e9094bc cc64120 7e265a9 41259f2 d0ed712 41259f2 d0ed712 41259f2 d0ed712 41259f2 d0ed712 41259f2 c4496e0 d0ed712 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
---
license: cc-by-4.0
pretty_name: Four Leaf Clover
viewer: false
tags:
- not-for-all-audiences
---

# Four Leaf Clover
Four leaf clover is a raw dump of fresh 4chan posts.
## ArchiverModes
Previously in `ChabikoStream`, there's 2 formats. While makes it easier to process, it caused a lot of trouble. As such, we have decided to only have `PostStream` ()
## Formats
Each jsonl line represents a single post.
## Models
Refer to the following pydantic model for parsing:
```py
class AttachmentData(pydantic.BaseModel):
attachment_url: str
filename: str
class Post(pydantic.BaseModel):
board: str
thread: int
pid:int
name: str
msg: str
attachment: Optional[AttachmentData] = None
posted:int
```
## Notices
- ~~Archiving only text for now since I need to see how much data images would take up.~~
- We have started to crawl attachments too.
- **Due to potential abuse, we are closing community posts.** Contact KaraKaraWitch in other known channels.
## Usage
You are free to use this as a base for 4chan archival sites. The format itself is pretty raw in it's current stage but it can be reprocessed for other uses.
## Boards indexed
We index all active boards at the moment. Boards indexed are as follows:
```
/a/, /b/, /c/, /d/, /e/, /f/, /g/, /gif/, /h/, /hr/, /k/, /m/, /o/, /p/, /r/, /s/, /t/, /u/, /v/, /vg/,
/vm/, /vmg/, /vr/, /vrpg/, /vst/, /w/, /wg/, /i/, /ic/, /r9k/, /s4s/, /vip/, /qa/, /cm/, /hm/, /lgbt/,
/y/, /3/, /aco/, /adv/, /an/, /bant/, /biz/, /cgl/, /ck/, /co/, /diy/, /fa/, /fit/, /gd/, /hc/, /his/,
/int/, /jp/, /lit/, /mlp/, /mu/, /n/, /news/, /out/, /po/, /pol/, /pw/, /qst/, /sci/, /soc/, /sp/,
/tg/, /toy/, /trv/, /tv/, /vp/, /vt/, /wsg/, /wsr/, /x/, /xs/
``` |