Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
0
81
CREATIVE COMMONS ATTRIBUTION-SHAREALIKE 3.0 UNPORTED (CC BY-SA 3.0)
This dataset, "Kaikki-Wiktionary-Ultimate-SQLite", is a derivative work based on
data provided by Kaikki.org, which is sourced from Wiktionary (a project of the
Wikimedia Foundation).
--------------------------------------------------------------------------------
1. ATTRIBUTION AND SOURCE
--------------------------------------------------------------------------------
The original data is provided by:
- Kaikki.org (https://kaikki.org/)
- Wiktionary (https://www.wiktionary.org/)
This SQLite version was processed and structured to provide an optimized,
single-file database format of the "raw-wiktextract-data".
--------------------------------------------------------------------------------
2. LICENSE TERMS
--------------------------------------------------------------------------------
This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
Unported License.
You are free to:
- Share: Copy and redistribute the material in any medium or format.
- Adapt: Remix, transform, and build upon the material for any purpose,
even commercially.
Under the following terms:
- Attribution: You must give appropriate credit, provide a link to the license,
and indicate if changes were made. You may do so in any reasonable manner,
but not in any way that suggests the licensor endorses you or your use.
- ShareAlike: If you remix, transform, or build upon the material, you must
distribute your contributions under the same license as the original.
Full Legal Code:
https://creativecommons.org/licenses/by-sa/3.0/legalcode
--------------------------------------------------------------------------------
3. DISCLAIMER
--------------------------------------------------------------------------------
The data is provided "as is" without warranty of any kind, express or implied.
The creator of this SQLite version does not guarantee the accuracy or
completeness of the dictionary entries as they are dependent on the upstream
Wiktionary data.
--------------------------------------------------------------------------------
4. HOW TO ATTRIBUTE
--------------------------------------------------------------------------------
If you use this dataset in your project, please include the following credit:
"Data based on Kaikki-Wiktionary-Ultimate-SQLite, sourced from Kaikki.org and
Wiktionary. Licensed under CC BY-SA 3.0."

Kaikki Ultimate Raw SQLite - World Dictionary Database (2026 Edition)

πŸ“Œ Overview

This dataset is a high-performance SQLite conversion of the massive Kaikki.org (Wiktextract) raw data. It contains millions of lexical entries across thousands of languages, preserved in its absolute raw JSON format to ensure zero data loss. This database is designed for developers, linguists, and AI researchers who need a structured, indexed, and offline-ready version of the world's most comprehensive dictionary.

πŸš€ Key Features

  • Zero Data Loss: Every single detail from the original raw-wiktextract-data.jsonl is preserved in the full_json column.
  • Massive Scale: Approximately 25 GB of structured data covering etymology, senses, pronunciations, and translations.
  • Performance Optimized: Includes pre-built B-Tree Indexes on the word and lang columns for millisecond query response times.
  • Single File Convenience: No need to parse millions of JSON lines; just connect with sqlite3 and start querying.

πŸ“Š Database Schema

The database contains a single table named dict with the following structure:

Column Type Description
word TEXT The headword/entry (Indexed).
lang TEXT Language name (e.g., "Indonesian", "Latin", "Sanskrit") (Indexed).
pos TEXT Part of Speech (e.g., "noun", "verb", "adj").
full_json TEXT The original raw JSON string containing all metadata.

πŸ›  How to Use

You can access this dataset using Python or any SQLite-compatible tool.

Quick Python Example:

import sqlite3
import json

# Connect to the database
conn = sqlite3.connect("kaikki_ultimate_raw.db")
cursor = conn.cursor()

# Search for a word
word_to_find = "surya"
cursor.execute("SELECT full_json FROM dict WHERE word = ?", (word_to_find,))

results = cursor.fetchall()
for row in results:
    data = json.loads(row[0])
    print(f"Language: {data.get('lang')}")
    print(f"Etymology: {data.get('etymology_text')}")

conn.close()

🌐 Target Languages Included

This database is a universal collection, including but not limited to:

  • Modern Languages: Indonesian, English, Spanish, Mandarin, etc.
  • Regional Languages: Javanese, Sundanese, Minangkabau, Balinese.
  • Classical/Root Languages: Latin, Ancient Greek, Sanskrit, Old Javanese, Arabic.

πŸ“œ Source & Attribution

The data is sourced from Kaikki.org, which extracts data from Wiktionary. All data is licensed under Creative Commons Attribution-ShareAlike 3.0 (CC BY-SA 3.0).

πŸ’‘ Potential Use Cases

  1. Etymology Research: Trace back the roots of Indonesian words to Sanskrit or Latin.
  2. AI Training: Fine-tune LLMs for translation or morphological analysis.
  3. App Development: Build powerful offline dictionary apps (e.g., "HafalKuat").
  4. Linguistic Analysis: Statistical analysis of word formations across different language families.
Downloads last month
15

Space using wave101828228/Kaikki-Wiktionary-Ultimate-SQLite 1