Skip to content

Instantly share code, notes, and snippets.

View sorami's full-sized avatar

Sorami Hisamoto sorami

View GitHub Profile
@voluntas
voluntas / shiguredo_recruit.rst
Last active May 23, 2024 00:32
時雨堂を支える採用
@voluntas
voluntas / shiguredo.rst
Last active May 22, 2024 14:27
時雨堂コトハジメ
@mugenen
mugenen / wn.py
Created March 4, 2012 11:48 — forked from yanbe/wn.py
A frontend of WordNet-Ja database file (sqlite3 format) which is available on http://nlpwww.nict.go.jp/wn-ja/
#!/usr/bin/env python
# encoding: utf-8
import sys
import sqlite3
from collections import namedtuple
conn = sqlite3.connect("wnjpn.db")
Word = namedtuple('Word', 'wordid lang lemma pron pos')