chocolatl / eh-tags

收集E站标签数据

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

收集E站标签数据

数据来源

数据格式

{
  female: {               // 命名空间,分别为:misc、reclass、language、parody、character、group、artist、male、female
    lolicon: {            // 标签名
      description: 'Underage girls in sexual situations or being nude. Not to be confused with young girls in general; should have undeveloped bodies.',    // 对应EHWiki中的Description,不存在时为空字符串,如果有多行用\n分隔
      note: 'Only appearance should be taken into account when tagging this.\nIs required for the oppai loli and low lolicon tags.',                        // 对应EHWiki中的Note,不存在时为空字符串,如果有多行用\n分隔
      japanese: 'ロリ',   // 对应EHWiki中的Japanese,不存在时为空字符串
      related: ['oppai loli', 'low lolicon']      // Description和Note中提及到的标签
    },
    // ...
  },
  misc: {
    ahiru: null,          // 如果一个标签没有词条,或者Description、Note、Japanese字段都不存在,则为null
    //...
  },
  // ...
}

注意

  • 内容为纯文本,使用Node.textContent获取,不包含HTML标签等信息
  • 两个命名空间下可能有相同标签,比如malefemale下都有x-ray标签

About

收集E站标签数据

License:MIT License


Languages

Language:JavaScript 100.0%