--- license: cc-by-4.0 pretty_name: Four Leaf Clover viewer: false tags: - not-for-all-audiences --- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/633e85093a17ab61de8d9073/Q68s4XbhWXWCJN1wvJT6d.png) # 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/ ```