snipsnipsnip / python-nkf

Python Japanese codecs by NKF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python Interface to NKF

How to Install

Install from PyPI:

$ sudo pip install nkf

Install from source tree:

$ make
$ sudo make install

Usage

## flag is same as the flags of nkf itself
import nkf
output = nkf.nkf(flag, input)

## For example, to convert from euc-jp to utf-8
output = nkf.nkf('-Ew', 'some euc-jp string')

## Guess character encoding
input_encoding = nkf.guess('some string')

guess() function guesses an input string encoding and returns one of next strings:

  • BINARY
  • ASCII
  • Shift_JIS
  • CP932
  • EUC-JP
  • EUCJP-MS
  • CP51932
  • ISO-2022-JP
  • CP50221
  • CP50220
  • UTF-8
  • UTF-16
  • UTF-32

About

Python Japanese codecs by NKF


Languages

Language:C 98.3%Language:Python 1.6%Language:Shell 0.1%Language:Makefile 0.0%