Skip to content

MarvNC/pixiv-dump

Repository files navigation

Pixiv Encyclopedia Dump

This repository contains dumps of the Pixiv Encyclopedia (ピクシブ百科事典), a collection of articles on various topics, including anime, manga, and games. The articles are written by users and are available in Japanese.

A Yomitan dictionary built with this data can be found at pixiv-yomitan.

Download

The dumps are available in the releases section.

Format

The dumps are available as sqlite3 databases. The detailed schema can be found in the schema.prisma file.

model PixivArticle {
  tag_name           String  @id
  summary            String
  updated_at         String
  main_illst_url     String
  view_count         Int
  illust_count       Int
  check_count        Int
  related_tags       String
  parent             String?
  lastScraped        String
  reading            String?
  header             String?
  mainText           String?
  lastScrapedReading String? // Unused
  lastScrapedArticle String?
}