Skip to main content

A python binding for mecab-ko

Project description

python-mecab-ko

A python binding for mecab-ko

Help

See documentation for more details.

Installation

Using pip:

$ pip install python-mecab-ko

Usage

To perform morpheme analysis, you need to make a MeCab instance first:

>>> from mecab import MeCab
>>> mecab = MeCab()

To extract morphemes in a given sentence, use mecab.morphs():

>>> mecab.morphs('영등포구청역에 있는 맛집 좀 알려주세요.')
['영등포구청역', '에', '있', '는', '맛집', '좀', '알려', '주', '세요', '.']

To extract nouns in a given sentence, use mecab.nouns():

>>> mecab.nouns('우리나라에는 무릎 치료를 잘하는 정형외과가 없는가!')
['우리', '나라', '무릎', '치료', '정형외과']

To perform a morpheme analysis on a given sentence, use mecab.pos():

>>> mecab.pos('자연주의 쇼핑몰은 어떤 곳인가?')
[('자연주의', 'NNG'), ('쇼핑몰', 'NNG'), ('은', 'JX'), ('어떤', 'MM'), ('곳', 'NNG'), ('인가', 'VCP+EF'), ('?', 'SF')]

If you would like to obtain detailed morpheme analysis results, use mecab.parse():

>>> mecab.parse('즐거운 하루 보내세요!')
[
    Morpheme(span=Span(start=0, end=3), surface="즐거운",
             feature=Feature(
             pos="VA+ETM", semantic=None, has_jongseong=True, reading="즐거운",
             type="Inflect", start_pos="VA", end_pos="ETM", expression="즐겁/VA/*+ᆫ/ETM/*",
        ),
    ),
    Morpheme(span=Span(start=4, end=6), surface="하루",
             feature=Feature(
             pos="NNG", semantic=None, has_jongseong=False, reading="하루",
             type=None, start_pos=None, end_pos=None, expression=None,
        ),
    ),
    Morpheme(span=Span(start=7, end=9), surface="보내",
             feature=Feature(
             pos="VV", semantic=None, has_jongseong=False, reading="보내",
             type=None, start_pos=None, end_pos=None, expression=None,
        ),
    ),
    Morpheme(span=Span(start=9, end=11), surface="세요",
             feature=Feature(
             pos="EP+EF", semantic=None, has_jongseong=False, reading="세요",
             type="Inflect", start_pos="EP", end_pos="EF", expression="시/EP/*+어요/EF/*",
        ),
    ),
    Morpheme(span=Span(start=11, end=12), surface="!",
             feature=Feature(
             pos="SF", semantic=None, has_jongseong=None, reading=None,
             type=None, start_pos=None, end_pos=None, expression=None,
        ),
    ),
]

Acknowledgments

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_mecab_ko-1.3.7.tar.gz (13.8 kB view details)

Uploaded Source

Built Distributions

python_mecab_ko-1.3.7-cp312-cp312-win_arm64.whl (785.7 kB view details)

Uploaded CPython 3.12 Windows ARM64

python_mecab_ko-1.3.7-cp312-cp312-win_amd64.whl (653.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

python_mecab_ko-1.3.7-cp312-cp312-win32.whl (562.2 kB view details)

Uploaded CPython 3.12 Windows x86

python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (602.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

python_mecab_ko-1.3.7-cp312-cp312-macosx_11_0_arm64.whl (349.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

python_mecab_ko-1.3.7-cp312-cp312-macosx_10_9_x86_64.whl (414.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

python_mecab_ko-1.3.7-cp311-cp311-win_arm64.whl (790.1 kB view details)

Uploaded CPython 3.11 Windows ARM64

python_mecab_ko-1.3.7-cp311-cp311-win_amd64.whl (656.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

python_mecab_ko-1.3.7-cp311-cp311-win32.whl (561.3 kB view details)

Uploaded CPython 3.11 Windows x86

python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (580.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (602.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

python_mecab_ko-1.3.7-cp311-cp311-macosx_11_0_arm64.whl (350.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

python_mecab_ko-1.3.7-cp311-cp311-macosx_10_9_x86_64.whl (414.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

python_mecab_ko-1.3.7-cp310-cp310-win_arm64.whl (789.2 kB view details)

Uploaded CPython 3.10 Windows ARM64

python_mecab_ko-1.3.7-cp310-cp310-win_amd64.whl (652.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

python_mecab_ko-1.3.7-cp310-cp310-win32.whl (563.3 kB view details)

Uploaded CPython 3.10 Windows x86

python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (599.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (558.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

python_mecab_ko-1.3.7-cp310-cp310-macosx_11_0_arm64.whl (349.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

python_mecab_ko-1.3.7-cp310-cp310-macosx_10_9_x86_64.whl (413.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

python_mecab_ko-1.3.7-cp39-cp39-win_arm64.whl (786.6 kB view details)

Uploaded CPython 3.9 Windows ARM64

python_mecab_ko-1.3.7-cp39-cp39-win_amd64.whl (656.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

python_mecab_ko-1.3.7-cp39-cp39-win32.whl (564.1 kB view details)

Uploaded CPython 3.9 Windows x86

python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (578.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (600.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

python_mecab_ko-1.3.7-cp39-cp39-macosx_11_0_arm64.whl (349.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

python_mecab_ko-1.3.7-cp39-cp39-macosx_10_9_x86_64.whl (413.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

python_mecab_ko-1.3.7-cp38-cp38-win_amd64.whl (667.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

python_mecab_ko-1.3.7-cp38-cp38-win32.whl (561.1 kB view details)

Uploaded CPython 3.8 Windows x86

python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (577.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (598.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

python_mecab_ko-1.3.7-cp38-cp38-macosx_11_0_arm64.whl (349.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

python_mecab_ko-1.3.7-cp38-cp38-macosx_10_9_x86_64.whl (413.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

python_mecab_ko-1.3.7-cp37-cp37m-win_amd64.whl (672.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

python_mecab_ko-1.3.7-cp37-cp37m-win32.whl (563.2 kB view details)

Uploaded CPython 3.7m Windows x86

python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (579.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (604.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (563.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

python_mecab_ko-1.3.7-cp37-cp37m-macosx_10_9_x86_64.whl (411.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file python_mecab_ko-1.3.7.tar.gz.

File metadata

  • Download URL: python_mecab_ko-1.3.7.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for python_mecab_ko-1.3.7.tar.gz
Algorithm Hash digest
SHA256 69cbb2ac559a3169c22b1a3aa5d3c247d2f7902d9fe7dc9966189a9c7694af0b
MD5 bb0f55acfccfa59c6d1dc033f19cfbe2
BLAKE2b-256 5b2281584e36d231b009075b6440da0eda4400f7293f853097b028263074f280

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 13126509630e47fc89a8c575f5af3eed1bc09370e978b331caf32325e6b98383
MD5 ac6dde1d0f4256ae1e9fe9f7e0636a40
BLAKE2b-256 cc78dc974259c3571a2436041c338a7a95a62e47c3da62c973fa98a55ab6399f

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3387906e66109989603b877899d1ae3a0132795c9c73ad91a5e7c4c077177351
MD5 e8690dbcb584daef4ac2878c582fcc0f
BLAKE2b-256 30600e898750bf06b23bb2b270cd6273c5820254b6f6c453459ff5ef4a04ac13

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3145c53772e842a046fdbf0659f0e5235e16d51b0bb8c0d3e8e078dc57d22373
MD5 2eb6765e66fa0020b7373d44f8069c28
BLAKE2b-256 f9e0426d401c6d12442ad564546d690ef174ff99a4ecd24e1e263616314ecf03

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c0e98a7d94278f4f5d93f03e35cc8044460c0076ab4698b764d5c44bd897dbe
MD5 456ef7ec37644e002349094f154d9d5a
BLAKE2b-256 aa88dd2e5e7d44351bba0c9fb462273df9dcd43c3e000bfd0a4279e52584e2f7

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a205ca4da908df39d6d70f968426d0e9dc79274a6d34b13a5588ab52f0e12be8
MD5 5ecfcdcab2e3ae5a4f096f94ae2c142b
BLAKE2b-256 f4cb169c68047a569e2e4f2a2243c4576df72255d1a4ab0b5a286ff75bc41a76

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e90e8c1009f8f6aa0dfc43c916ff481dc79aa5a7e528a41a193add9c61ac6d1
MD5 41a47a6e7509e9c887217839a0469a83
BLAKE2b-256 e7013a4032f78370375d79b7f6b7eaa1602a4070d28dee8f7f3dfa8c87e73940

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eae5eb6178b06019e3773e9dde126dd29df5ed417406be5611ebdd0f8839c1e1
MD5 3cce5e71483148e3cbc0da648921b455
BLAKE2b-256 ee3d8c13f7d6cbcc9b84b1797552de60fc2ff10012d801598b75aa41ff17db41

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7721f69381dac572a1598e5906cc5faba233ed48bc6ff8672082a519d7db0ba1
MD5 f74ca626adab5096fadd2a3869213a3a
BLAKE2b-256 c27a980c48f19367353da0d0ea4ffc5c73be0893987bc4c8bf4522391b4e0b14

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9f5e40101426b87c99ecb1268f56402f9c44f9d06271b28ccc1ec1bc6bc582ac
MD5 8d1e8c591cfb0c4906497a52c3f28e22
BLAKE2b-256 1c41f9dc3a8edea915b662fe488bcb690b851430334b238476730f895106da1f

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a456e40817dc73f58d7f11ff01af4394cdd1ceab2e98feddde625587603d65f7
MD5 14e5d04783f6f8e25bb9e907a760ad5d
BLAKE2b-256 9d10ee4b238cac3375a5a23636a358d094989adfe92a996c843d609537339f80

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 644207821de8c76ff2442d84c8902dd16b239fdc80c79d0774f8b9ea446c4218
MD5 b142a5ba16846bb3d2dd36e5ceb7d88b
BLAKE2b-256 3efb4e13d76ae372ae635af4d072dbf4d3429d0c604332c3f8d0109f3cb4fec5

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0933d3fcb84f6ed36cce49f1939604ac0fcaf4460441e832cb98ca1bdce74a37
MD5 d14fc752c4ac5258e1e4833374b953e0
BLAKE2b-256 c45e2986910cb757eb49f592b33977be05396ebeeb6e18ec6a4643f6c9fdce2e

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7b35116e98fb736f7c9550eb1a74cfb6aa35c39b0b43cbe7a8837bfa3cd39d4
MD5 22899d78f667dde5f14c5c0e7a8b33eb
BLAKE2b-256 5c7d28552e79b7bd4bc9d39b0bf1a037f541c5b2cf07467c1a274715b1afecde

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 010ca2297e63d08a772466dd401d36ed9914502b8794c08948427a4083b3202c
MD5 0401e0dc088d4675b7592ced3b7516e9
BLAKE2b-256 e5736768de76a1b0b1120b07a58334b89db214d740d62504a3fe691fd8738df4

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 523153de14262c413838852742541d48ad99d41ab8f6c5413a226319ee4c25ef
MD5 7acaffd3ef8b1627cad2631f0b253124
BLAKE2b-256 06a6ab4405b9228e62ced5d7134e202ec8970296d58ceca5e991c76abbe04701

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da1cc9de07e75beb2d4067c1c072ecabdb293440633fc0e32f2875a14e703829
MD5 8827efedf7f53ef556f54de120036dd5
BLAKE2b-256 c6776d6bffa6217550d1dde3c421e40f422c924be1ed82effa1012cf7d24d215

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 14b070b886d864964710c6a396556d8509be2dce1618f401192fd7c213eb4608
MD5 b2f08105885a2983ce971362a65aa317
BLAKE2b-256 7539d04453e3a03f5a60b74c9daa2ed8c2143052eea120c1ec148dbafebf5e80

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef5a6bb8d4611dd621436492adb140c280fe4e155097c5dcc8b1fcdd203abfb6
MD5 99a28d8387016fd11dd60b3fdaa26902
BLAKE2b-256 d761778f76722fbd67143d3615fd063527c287db47a7f65905ec2359ab0a06b5

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 682875cd1cafeeb2946b856b1b479144b4e8d28363b6bff3ae1c8b294994742b
MD5 fe5edbd01f82ad6d0a8278860df9afb1
BLAKE2b-256 9b69c3417d6e0f207095b6d20128b389a667b18bdd97bc1c927449208bf4f16a

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8c4347f075b8748cbc5695f6b91120b0e388344eab5d9c26d50ad3c57c35754
MD5 17820ed9609d9f7989e9032d9ff75876
BLAKE2b-256 b9e0b0be8e17b4ace180a323bb8ddf6213a6e984c18c403c65c6e71e88c4cb4f

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2bad59670b280548b9060c1b511f6f088c09b977355de7192e9d0044b8f724b
MD5 cc4663edaf5e8df3c113559083211e97
BLAKE2b-256 c3a9b121faaa74c41adc9f5f9c1862e5ba6873886610fcae8328ddd5386f2a39

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8d2539e7ea91eb0705381f75e64c626be4eba69824a8c82fbdf2c4e48a1d389
MD5 258995fd7dfb51e08e424169c2316106
BLAKE2b-256 da18b685841eb245560903732b50f2a45c488452ad4162a01320acedfc622c4a

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27a03ae50aabc7f057c26ad5e4c6c4d431cf696778e45025e208d2f6b7bf115d
MD5 e018d3441d5b188ff8a0e31850b78786
BLAKE2b-256 b94d3cf853f6c8abdb901a45b2478f4915c0df387b06b66057196c792f287050

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4760efe6327b5707f55db2b4a6f8fb047fe8e068577a9a913304bb0d12e7de44
MD5 25b10d597c41bccfbd760a7f9c28c17b
BLAKE2b-256 56727ba507bc941f50bbbfafa96314fc145967b91387f34fd1c4e54af9de98fe

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2a84df563961a6507e170f78b010716a69874fc4b00ce503280f5eb7d62ccd1c
MD5 ef8055406d3a54f0df7187f32be02845
BLAKE2b-256 4234a7d11d329976737202590b7861c7d382b742de11b47bf8c9a7a38a179319

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 12c4b86041350024355d51dd16cb989fd027e142c8083d3b12d21b9262522054
MD5 ae7bea79988aa6468dfe372707a67cad
BLAKE2b-256 3c1e2aa1337bd0e37210ffb769189cf59645ee891528f0cd8c6431fd1af04fe7

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 288ff89e4d1318923acecccfbb0b9d4937a8f93ac27e4868e08c778629d0522a
MD5 6d48b2893c90694f19876000dbd82375
BLAKE2b-256 cdfe3e0110f7f9d0ad6790ea1929794f5d302214f0075ae83f8e88d2a592f566

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c96c719105eae24c24882fbea821df7a26c961590d06ff932599690785d7efe5
MD5 d23f26ac97feb609a5d53167146b45d7
BLAKE2b-256 f613e340034d7ad3a9178ad4db25d061b87a0b9fe98aae2acfda5c563713314f

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99f02fb9816dda3258726b33423f0b48429582d4386529c08caa01c0d4e8365b
MD5 f2fd612f97e73abdbad0ce0af6d7ac04
BLAKE2b-256 31380b8dc4605124e9935a9834a70d991423bcb5534af2255d2b130e40e2ebb5

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d147ce60440cd04e3e113508f1c7f04ed39bcbb7991921d9c66b060709af253e
MD5 ba9a7c8531cf15a9b1225fa884242191
BLAKE2b-256 301153e6abbab7b8ab3c0e5cb511ea837c91b23d5be770458e12bbae82f92275

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 691bed2317e4cbbf4f00fc11a59d6d95412b72b9bd6eea037880df95fcd7e6a0
MD5 47eee8b27be703dac5ee571820773e5f
BLAKE2b-256 897986e4b2d19e5d6cd20873ae8537e368d97c2c1f7ec4c76ced07928740d00f

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fdae16e907470cec155721cc0f849a9d52e01eae316aae53101fa236069505b
MD5 d1a94ffde638556626949b36c3e51f6a
BLAKE2b-256 5bba2ca5a3f17eb9b0077b115f0969ba876760eb0667f5ab1dda0ac1f7a1141f

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 782bf38e817ad54ca16dccd2e4edf083829e259aac1da3187ccc1fd305dfb503
MD5 005aea2474a9bdf746a069ad1b5387ed
BLAKE2b-256 2c9fe42c2671758867ef262a05ea068dd85b06400252c12cf6d37dc5e279b44f

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8015778e03186f8d2e7b0f1c0c9b753617d848cea2c4eba09e59e081080da92a
MD5 04569bbcd4f66c66db7fbae665a29ab6
BLAKE2b-256 0aa5e613cedb31c67228445726c23129f7583d49e0fb0498323bb4186b6a9649

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8c297e6e5a8a0aacd75e9efee465d0bf7f6d1b9f0ccb9b18916e9203ea0e349
MD5 586b5e7dd3a1bc4716b88718079336f9
BLAKE2b-256 1ecdab8107642f2188db4a2c03cca63f455559d750fb2cee8ddea2bf2d73e0bb

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4321180be1e5446bb97e8f803079deb72500af7bbb7d0e2c49ec9995ec3674f5
MD5 e79e7b1223a2f63bd73e4e236e9a94d4
BLAKE2b-256 2e67a6b8867c81915712ed81a587567e990ca0276e4cf5fc23392980e815aeb3

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0b50438fb570299bd7e4c30549373c171b94f6400c32b0b455b37047e5ed7ed
MD5 4d03d05c0ab2d0091a21083308392b8e
BLAKE2b-256 ebdeeb148e238a9c883427b2baac9acee63cc9f8d35369f341f114bbd21bf0ed

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64346e4a627ad3b56647f2d6909ba52bd25b5b29f8d320944ed9dce602ba0b75
MD5 0d6dc886a0827680e433a8a2c64c04de
BLAKE2b-256 103367403d00fefc5deed0fd458973af2e578b5525c3bf3d1f5e758c63ddfc0b

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ad754804a5a5b64b62d77a962d33ef6e931765cede89f880e02e3d18971a5bd
MD5 d23813540dfc687a10859fd1a645a7e5
BLAKE2b-256 fe0998c8fabad8c4837083fdb88eecb1ce3597975aa0833229ea28760f215776

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e0fb84a0eda5f77dbb456fb7eba9715349668b2a9bb4235df0904620653eabda
MD5 3e3b0e105e6119dd6534b9c027d52b76
BLAKE2b-256 47fc381835fe045e8ba401491df2f982a1d6e3277e4a3b6583899c40a92423c6

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ec22b9f8b7d5ec62d2af48d252f0172e1c4dfdf1387bad356f62b73084bac675
MD5 8fdbd09a6ff2a791f19a9bf0a70c048a
BLAKE2b-256 eca9a3573cbc1368681dbbe7db3aed1a4953cca7dbdc6da55bbd98a0fb396f0e

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10ea3c549eac11cdf9e994ce65fb34653a142d04eaa519c2ba3a99646cb21991
MD5 0791b3d552828822230a3a5877acfc6a
BLAKE2b-256 830e491d28597ca0df50134c45b5b0c99ab76546bce41347dbb90f404ab3b080

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eab31739769b1ad90fcd81f7e2319f2bc33f7b85aee3a5cec230352963678ac0
MD5 0267b7ffff18eb006b8b454ac3e1c6cf
BLAKE2b-256 30f7e8aaa4b6f1b9354a62fa0c402349e80e8896d066e94dec73c1c5d83271e0

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 661da586a6783cd60dc93ebb4dcc182e5cb3d37b98d25fe741c8eb2aabd59b30
MD5 726d771c814a0883a9a9804c5448eaa1
BLAKE2b-256 e9fd4cbde48db8b3f6913e717e9a8976404bf76372a8cec35d71e1cd1eaee256

See more details on using hashes here.

File details

Details for the file python_mecab_ko-1.3.7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_mecab_ko-1.3.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 198c0b9a832966927ceceda599b8d2f38426d11d25defa0d4ed819e3d00bfa91
MD5 4efa738c421fab0623c2d80e5f46d289
BLAKE2b-256 0c809e830f16339396fcfd0cec7c964bc12bbc135de1128ac5d63ee8ab36c23a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page