diff --git a/README.rst b/README.rst deleted file mode 100644 index c061636..0000000 --- a/README.rst +++ /dev/null @@ -1,144 +0,0 @@ - -cChardet -======== - -cChardet is high speed universal character encoding detector. - binding -to -`charsetdetect `_. - -Support codecs --------------- - -- Big5 -- EUC-JP -- EUC-KR -- GB18030 -- HZ-GB-2312 -- IBM855 -- IBM866 -- ISO-2022-CN -- ISO-2022-JP -- ISO-2022-KR -- ISO-8859-2 -- ISO-8859-5 -- ISO-8859-7 -- ISO-8859-8 -- KOI8-R -- Shift\_JIS -- TIS-620 -- UTF-8 -- UTF-16BE -- UTF-16LE -- UTF-32BE -- UTF-32LE -- WINDOWS-1250 -- WINDOWS-1251 -- WINDOWS-1252 -- WINDOWS-1253 -- WINDOWS-1255 -- EUC-TW -- X-ISO-10646-UCS-4-2143 -- X-ISO-10646-UCS-4-3412 -- x-mac-cyrillic - -Requires --------- - -- Cython: `http://www.cython.org/ `_ - -e.g.) Ubuntu 12.04 - -:: - - $ sudo apt-get install build-essential python-dev cython - -Installation ------------- - -:: - - $ cd /tmp - $ git clone git://github.com/PyYoshi/cChardet.git - $ cd cChardet - $ python setup.py build - $ sudo python setup.py install - -or - -:: - - $ sudo easy_install cchardet - -Example -------- - -:: - - # -*- coding: utf-8 -*- - import cchardet as chardet - with open(r"test/testdata/wikipediaJa_One_Thousand_and_One_Nights_SJIS.txt", "rb") as f: - msg = f.read() - result = chardet.detect(msg) - print(result) - -Test ----- - -:: - - $ sudo easy_install or pip install -U cchardet nose - $ cd test - $ nosetests --nocapture tests.py - -Benchmark ---------- - -code: -`tests.TestCchardetSpeed `_ - -sample: -`test/testdata/wikipediaJa\_One\_Thousand\_and\_One\_Nights\_SJIS.txt `_ - -Performance: -~~~~~~~~~~~~ - -CPU: Intel Core i7 860 2.8GHz - -RAM: DDR3-1333 16GB - -Platform: Kubuntu 12.04 amd64, Python 2.7.3 64-bit - -Result: -~~~~~~~ - -:: - - chardet: 0.32 (call/s) - - cchardet: 975.32 (call/s) - -License --------------- - -- The MIT License: - `src/cchardet `_ - -- Other Libraries License: Please, look at the - `src/ext `_ - directory. - -Thanks --------------- - -- `uchardet-enhanced `_ - -- `Cython `_ - -Contact --------------- - -`My blog `_ - -`Issues `_ - -Sorry for my poor English :) diff --git a/pandoc_markdown2rst.bat b/pandoc_markdown2rst.bat deleted file mode 100644 index 98692f7..0000000 --- a/pandoc_markdown2rst.bat +++ /dev/null @@ -1,4 +0,0 @@ -rem Install pandoc: http://code.google.com/p/pandoc/downloads/list -pandoc -f markdown -t rst -o readme.rst readme.md - -pause \ No newline at end of file