Name | korean-regex JSON |
Version |
0.2.0
JSON |
| download |
home_page | None |
Summary | Regex for Korean |
upload_time | 2024-05-15 13:45:02 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
keywords |
regex
korean
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# korean-regex: Regex for Korean
## 소개
korean-regex는 한국어(한글)을 분석하기 위해 regex(정규표현식)에 문법을 추가한 패키지입니다. korean-regex로는 한글과 관련한 많은 추가 기능을 사용할 수 있습니다.
Rust 바인딩을 사용하여 매우 성능이 좋습니다.
```python
import kre
regex = kre.compile(r'\b[^ ]+(?=[::^0]).\b')
print(regex.findall('ko_re는 한국어(한글)을 분석하기 위해 regex(정규표현식)에 문법을 추가한 패키지입니다. ko_re로는 한글과 관련한 많은 추가 기능을 사용할 수 있습니다.')) # ['ko_re는', '한국어(한글)을', 'regex(정규표현식', '문법을', '추가한', 'ko_re로는', '관련한', '많은', '기능을', '사용할']
```
## 설치
korean-regex는 pip를 통해 설치하실 수 있습니다. kre를 설치하는 것이 **아닌** `korean-regex`를 설치해야 한다는 점에 주의하세요.
```python
pip install -U korean-regex
```
## 상세
이 프로젝트는 [동명의 러스트 프로젝트](https://github.com/ilotoki0804/korean-regex-rust)를 파이썬으로 바인딩한 것입니다. 기본적인 작동 방식은 완전히 같으니 조금 더 자세한 설명이 필요하다면 [이 링크](https://docs.rs/korean_regex/latest/korean_regex/)를 참고하세요.
기본적으로 korean-regex는 bracket expression에서 특정한 조건을 발생시켰을 때 작동하는 추가적인 기능을 가미한 것입니다. 해당 조건을 제외한 나머지 상황에서는 파이썬의 기본 re 라이브러리와 동작이 완전히 같습니다.
우선 korean-regex를 불러오려면 kre.compile()을 사용합니다. compile외에도 `kre.sub`나 `kre.search`, `kre.match`와 같이 바로 사용하는 것도 가능합니다.
korean-regex에서 처리되는 구문은 다음과 같습니다: `[초성:중성]`(`가`와 같은 종성이 없는 글자의 경우) 또는 `[초성:중성:종성]`, 또한 이는 regex의 bracket expression처럼 글자를 죽 이어서 쓰거나 `-`을 처리하는 것으로 여러 음소(소리의 최소 단위로, 자음과 모음을 의미합니다.)를 선택합니다.
예를 들어 `[ㄱㄴ:ㅏ]`는 regex구문에서 `[가나]`를 의미하고, `[ㄹㅎ:ㅗ:ㄶㅈ]`은 `[롢롲혾홎]`을 의미합니다. 또한 `[ㄱ-ㄹ:ㅏ]`는 `[가까나다따라]`를 의미합니다(`[가나다라]`가 아님에 주의하세요!).
```python
# 예시 코드
import kre
some_regex = kre.compile('[ㄱㄴ:ㅏㅓㅣ:ㄶㄷㄹㅊ]')
print(some_regex) # re.compile('[갆갇갈갗걶걷걸겇긶긷길깇낞낟날낯넎넏널넟닎닏닐닟]')
print(some_regex.findall('길을 걷는 사람을 보았다. 그는 날 볼 낯이 없어서 멀리멀리 떠났다.')) # ['길', '걷', '날', '낯']
```
또한 regex구문처럼 `^`도 지원합니다. 예를 들어 `[^ㄷㄹㅉㅎ:ㅏ]`는 `[가까나따마바빠사싸아자차카타파]`(`ㅏ` 조합 중 `다,라,짜,하` 없음.)입니다.
만약 해당 자리에 모든 구문을 일치시키고 싶다면 해당 자리를 비워놓으면 됩니다. 예를 들어 `[:ㅏ]`는 가능한 모든 `ㅏ` 조합을 의미하고, `[:ㅗ:ㄴ]`은 `[곤꼰논돈똔...혼]`을 의미합니다.
## 고급
### 조합의 사용
된소리를 제외한 조합형 음소는 괄호를 이용해서 표현할 수 있습니다. 예를 들어 `ㅚ`는 `(ㅗㅣ)`와 완전히 같은 구문이고, `ㄶ`은 `(ㄴㅎ)`과 완전히 같습니다. 예를 들어 `[:ㅞㅢ:ㄶㄼ]`은 `[:(ㅜㅔ)ㅢ:ㄶ(ㄹㅂ)]`과 같습니다.
### `0`의 사용
`0`은 해당 자리에 음소가 없다는 의미입니다. 예를 들어 `[ㄱ:ㅏ:0ㄴㅎ]`은 `[가간갛]`와 같습니다. 초성과 중성에는 기본적으로는 `0`을 사용하는 것이 금지되지만 특별한 경우, 한 음소를 나타내고 싶을 때, 사용됩니다. 예를 들어 `[0:ㅏ-ㅜ]` 혹은 `[0:ㅏ-ㅜ:0]`은 `[ㅏㅐㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜ]`를 의미합니다. 또한 `[ㄱ-ㄹ:0]` 또는 `[ㄱ-ㄹ:0:0]`은 `[ㄱㄲㄴㄷㄸㄹ]`를 의미합니다. 하지만 초성과 중성에 `0`이 들어가는 경우는 몇 가지 제약이 있는데요, 우선 `0`이 들어가면 그 자리에는 `0` 외에 다른 음소를 작성할 수 없습니다. 다음은 몇 가지 조합은 `0`을 사용할 수 없다는 것입니다. 예를 들어 `[ㄱ:0:ㅎ]`을 생각해 봅시다. 이런 한글은 곰곰히 생각해도 사용할 수 있는 형태는 아닙니다. 이것 뿐만 아니라 `[0:ㅏ:ㅎ]`나 `[0:0:0]`도 금지됩니다.
<!-- ### compilestr 및 make_korean 사용 및 응용
기본적으로 compile은 단순히 compilestr()을 거친 문자열을 re.complie()에 감싸는 것에 불과합니다.
```python
def compile(pattern, flags=0):
return re.compile(compilestr(pattern), flags)
```
따라서 처리 전 상태의 구문을 알고 싶다면 compilestr을 사용할 수 있습니다.
만약 regex 구문이 궁금한 것이 아니라 그냥 가능한 모든 한글 조합을 알고 싶은 경우엔 make_korean의 기능을 응용할 수 있습니다.
```python
# 받침이 ㄴ인 글자 모두 뽑기
import kre
print(kre.make_korean('[::ㄴ]'))
# 간갠갼걘...휸흔흰힌
``` -->
## 정규 음운 선행 자모순
`regular_first` 자모순('정규 음운 선행 자모순' 이하 '선행 자모순')은 된소리나 자음군, 합용자들이 뒤로 보내진 순서입니다.
기본 순서(유니코드 순서 또는 사전순)은 다음과 같습니다:
* 초성: ㄱㄲㄴㄷㄸㄹㅁㅂㅃㅅㅆㅇㅈㅉㅊㅋㅌㅍㅎ
* 중성: ㅏㅐㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜㅝㅞㅟㅠㅡㅢㅣ
* 종성: ㄱㄲㄳㄴㄵㄶㄷㄹㄺㄻㄼㄽㄾㄿㅀㅁㅂㅄㅅㅆㅇㅈㅊㅋㅌㅍㅎ
하지만 선행 자모순은 다음과 같습니다:
* 초성: ㄱㄴㄷㄹㅁㅂㅅㅇㅈㅊㅋㅌㅍㅎㄲㄸㅃㅆㅉ
* 중성: ㅏㅑㅓㅕㅗㅛㅜㅠㅡㅣㅐㅒㅔㅖㅘㅙㅚㅝㅞㅟㅢ
* 종성: ㄱㄴㄷㄹㅁㅂㅅㅇㅈㅊㅋㅌㅍㅎㄲㄳㄵㄶㄺㄻㄼㄽㄾㄿㅀㅄㅆ
이 순서는 `-`를 통해 값에 접근할 때 사용되지만, 정렬은 일반적인 유니코드 순서(사전 순서)대로 정렬됩니다.
예를 들어 `[ㄱ-ㅎ:0:0]`은 기본 순서에서는 모든 초성을 포함하는 `[ㄱㄲㄴㄷㄸㄹㅁㅂㅃㅅㅆㅇㅈㅉㅊㅋㅌㅍㅎ]`이지만, 선행 자모순에서는 `[ㄱㄴㄷㄹㅁㅂㅅㅇㅈㅊㅋㅌㅍㅎ]`입니다.
다음과 같은 방식으로 선행 자모순을 사용할 수 있습니다.
```python
import kre
kre.compile("[ㄱ-ㅎ:ㅏ]", order="regular_first") # 선행 자모순
kre.compile("[ㄱ-ㅎ:ㅏ]", order="default") # 기본값(사전순)
```
정규표현식 플래그가 더 먼저 오기 때문에 주의해야 합니다.
```python
import kre
kre.compile("[ㄱ-ㅎ:ㅏ]", "regular_first") # XXX 오류! 정규표현식 flag로 처리됨
kre.compile("[ㄱ-ㅎ:ㅏ]", order="default") # 올바른 사용
```
## release note
* 0.2.0: `order` 파라미터 추가
* 0.1.0: 러스트 바인딩으로 완전히 처음부터 재제작, 기존 버전과 완전히 다름
* 0.0.5: make_korean 추가, 이름 변경, 타입 추가, 리팩토링, 검사 추가
* 0.0.4: readme 보강, 리팩토링
* 0.0.3(첫 안정화 버전): 시작
Raw data
{
"_id": null,
"home_page": null,
"name": "korean-regex",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "regex, korean",
"author": null,
"author_email": "ilotoki0804 <ilotoki0804@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/50/5a/a0d143df4fe312e08bb16156ce8978b131d8e947fc7420d83a9b6a09a1cf/korean_regex-0.2.0.tar.gz",
"platform": null,
"description": "# korean-regex: Regex for Korean\n\n## \uc18c\uac1c\n\nkorean-regex\ub294 \ud55c\uad6d\uc5b4(\ud55c\uae00)\uc744 \ubd84\uc11d\ud558\uae30 \uc704\ud574 regex(\uc815\uaddc\ud45c\ud604\uc2dd)\uc5d0 \ubb38\ubc95\uc744 \ucd94\uac00\ud55c \ud328\ud0a4\uc9c0\uc785\ub2c8\ub2e4. korean-regex\ub85c\ub294 \ud55c\uae00\uacfc \uad00\ub828\ud55c \ub9ce\uc740 \ucd94\uac00 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n\nRust \ubc14\uc778\ub529\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub9e4\uc6b0 \uc131\ub2a5\uc774 \uc88b\uc2b5\ub2c8\ub2e4.\n\n```python\nimport kre\nregex = kre.compile(r'\\b[^ ]+(?=[::^0]).\\b')\nprint(regex.findall('ko_re\ub294 \ud55c\uad6d\uc5b4(\ud55c\uae00)\uc744 \ubd84\uc11d\ud558\uae30 \uc704\ud574 regex(\uc815\uaddc\ud45c\ud604\uc2dd)\uc5d0 \ubb38\ubc95\uc744 \ucd94\uac00\ud55c \ud328\ud0a4\uc9c0\uc785\ub2c8\ub2e4. ko_re\ub85c\ub294 \ud55c\uae00\uacfc \uad00\ub828\ud55c \ub9ce\uc740 \ucd94\uac00 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.')) # ['ko_re\ub294', '\ud55c\uad6d\uc5b4(\ud55c\uae00)\uc744', 'regex(\uc815\uaddc\ud45c\ud604\uc2dd', '\ubb38\ubc95\uc744', '\ucd94\uac00\ud55c', 'ko_re\ub85c\ub294', '\uad00\ub828\ud55c', '\ub9ce\uc740', '\uae30\ub2a5\uc744', '\uc0ac\uc6a9\ud560']\n```\n\n## \uc124\uce58\n\nkorean-regex\ub294 pip\ub97c \ud1b5\ud574 \uc124\uce58\ud558\uc2e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. kre\ub97c \uc124\uce58\ud558\ub294 \uac83\uc774 **\uc544\ub2cc** `korean-regex`\ub97c \uc124\uce58\ud574\uc57c \ud55c\ub2e4\ub294 \uc810\uc5d0 \uc8fc\uc758\ud558\uc138\uc694.\n\n```python\npip install -U korean-regex\n```\n\n## \uc0c1\uc138\n\n\uc774 \ud504\ub85c\uc81d\ud2b8\ub294 [\ub3d9\uba85\uc758 \ub7ec\uc2a4\ud2b8 \ud504\ub85c\uc81d\ud2b8](https://github.com/ilotoki0804/korean-regex-rust)\ub97c \ud30c\uc774\uc36c\uc73c\ub85c \ubc14\uc778\ub529\ud55c \uac83\uc785\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc778 \uc791\ub3d9 \ubc29\uc2dd\uc740 \uc644\uc804\ud788 \uac19\uc73c\ub2c8 \uc870\uae08 \ub354 \uc790\uc138\ud55c \uc124\uba85\uc774 \ud544\uc694\ud558\ub2e4\uba74 [\uc774 \ub9c1\ud06c](https://docs.rs/korean_regex/latest/korean_regex/)\ub97c \ucc38\uace0\ud558\uc138\uc694.\n\n\uae30\ubcf8\uc801\uc73c\ub85c korean-regex\ub294 bracket expression\uc5d0\uc11c \ud2b9\uc815\ud55c \uc870\uac74\uc744 \ubc1c\uc0dd\uc2dc\ucf30\uc744 \ub54c \uc791\ub3d9\ud558\ub294 \ucd94\uac00\uc801\uc778 \uae30\ub2a5\uc744 \uac00\ubbf8\ud55c \uac83\uc785\ub2c8\ub2e4. \ud574\ub2f9 \uc870\uac74\uc744 \uc81c\uc678\ud55c \ub098\uba38\uc9c0 \uc0c1\ud669\uc5d0\uc11c\ub294 \ud30c\uc774\uc36c\uc758 \uae30\ubcf8 re \ub77c\uc774\ube0c\ub7ec\ub9ac\uc640 \ub3d9\uc791\uc774 \uc644\uc804\ud788 \uac19\uc2b5\ub2c8\ub2e4.\n\n\uc6b0\uc120 korean-regex\ub97c \ubd88\ub7ec\uc624\ub824\uba74 kre.compile()\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4. compile\uc678\uc5d0\ub3c4 `kre.sub`\ub098 `kre.search`, `kre.match`\uc640 \uac19\uc774 \ubc14\ub85c \uc0ac\uc6a9\ud558\ub294 \uac83\ub3c4 \uac00\ub2a5\ud569\ub2c8\ub2e4.\n\nkorean-regex\uc5d0\uc11c \ucc98\ub9ac\ub418\ub294 \uad6c\ubb38\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4: `[\ucd08\uc131:\uc911\uc131]`(`\uac00`\uc640 \uac19\uc740 \uc885\uc131\uc774 \uc5c6\ub294 \uae00\uc790\uc758 \uacbd\uc6b0) \ub610\ub294 `[\ucd08\uc131:\uc911\uc131:\uc885\uc131]`, \ub610\ud55c \uc774\ub294 regex\uc758 bracket expression\ucc98\ub7fc \uae00\uc790\ub97c \uc8fd \uc774\uc5b4\uc11c \uc4f0\uac70\ub098 `-`\uc744 \ucc98\ub9ac\ud558\ub294 \uac83\uc73c\ub85c \uc5ec\ub7ec \uc74c\uc18c(\uc18c\ub9ac\uc758 \ucd5c\uc18c \ub2e8\uc704\ub85c, \uc790\uc74c\uacfc \ubaa8\uc74c\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4.)\ub97c \uc120\ud0dd\ud569\ub2c8\ub2e4.\n\n\uc608\ub97c \ub4e4\uc5b4 `[\u3131\u3134:\u314f]`\ub294 regex\uad6c\ubb38\uc5d0\uc11c `[\uac00\ub098]`\ub97c \uc758\ubbf8\ud558\uace0, `[\u3139\u314e:\u3157:\u3136\u3148]`\uc740 `[\ub862\ub872\ud63e\ud64e]`\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4. \ub610\ud55c `[\u3131-\u3139:\u314f]`\ub294 `[\uac00\uae4c\ub098\ub2e4\ub530\ub77c]`\ub97c \uc758\ubbf8\ud569\ub2c8\ub2e4(`[\uac00\ub098\ub2e4\ub77c]`\uac00 \uc544\ub2d8\uc5d0 \uc8fc\uc758\ud558\uc138\uc694!).\n\n```python\n# \uc608\uc2dc \ucf54\ub4dc\nimport kre\nsome_regex = kre.compile('[\u3131\u3134:\u314f\u3153\u3163:\u3136\u3137\u3139\u314a]')\nprint(some_regex) # re.compile('[\uac06\uac07\uac08\uac17\uac76\uac77\uac78\uac87\uae36\uae37\uae38\uae47\ub09e\ub09f\ub0a0\ub0af\ub10e\ub10f\ub110\ub11f\ub2ce\ub2cf\ub2d0\ub2df]')\nprint(some_regex.findall('\uae38\uc744 \uac77\ub294 \uc0ac\ub78c\uc744 \ubcf4\uc558\ub2e4. \uadf8\ub294 \ub0a0 \ubcfc \ub0af\uc774 \uc5c6\uc5b4\uc11c \uba40\ub9ac\uba40\ub9ac \ub5a0\ub0ac\ub2e4.')) # ['\uae38', '\uac77', '\ub0a0', '\ub0af']\n```\n\n\ub610\ud55c regex\uad6c\ubb38\ucc98\ub7fc `^`\ub3c4 \uc9c0\uc6d0\ud569\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 `[^\u3137\u3139\u3149\u314e:\u314f]`\ub294 `[\uac00\uae4c\ub098\ub530\ub9c8\ubc14\ube60\uc0ac\uc2f8\uc544\uc790\ucc28\uce74\ud0c0\ud30c]`(`\u314f` \uc870\ud569 \uc911 `\ub2e4,\ub77c,\uc9dc,\ud558` \uc5c6\uc74c.)\uc785\ub2c8\ub2e4.\n\n\ub9cc\uc57d \ud574\ub2f9 \uc790\ub9ac\uc5d0 \ubaa8\ub4e0 \uad6c\ubb38\uc744 \uc77c\uce58\uc2dc\ud0a4\uace0 \uc2f6\ub2e4\uba74 \ud574\ub2f9 \uc790\ub9ac\ub97c \ube44\uc6cc\ub193\uc73c\uba74 \ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 `[:\u314f]`\ub294 \uac00\ub2a5\ud55c \ubaa8\ub4e0 `\u314f` \uc870\ud569\uc744 \uc758\ubbf8\ud558\uace0, `[:\u3157:\u3134]`\uc740 `[\uace4\uaf30\ub17c\ub3c8\ub614...\ud63c]`\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4.\n\n## \uace0\uae09\n\n### \uc870\ud569\uc758 \uc0ac\uc6a9\n\n\ub41c\uc18c\ub9ac\ub97c \uc81c\uc678\ud55c \uc870\ud569\ud615 \uc74c\uc18c\ub294 \uad04\ud638\ub97c \uc774\uc6a9\ud574\uc11c \ud45c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 `\u315a`\ub294 `(\u3157\u3163)`\uc640 \uc644\uc804\ud788 \uac19\uc740 \uad6c\ubb38\uc774\uace0, `\u3136`\uc740 `(\u3134\u314e)`\uacfc \uc644\uc804\ud788 \uac19\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 `[:\u315e\u3162:\u3136\u313c]`\uc740 `[:(\u315c\u3154)\u3162:\u3136(\u3139\u3142)]`\uacfc \uac19\uc2b5\ub2c8\ub2e4.\n\n### `0`\uc758 \uc0ac\uc6a9\n\n`0`\uc740 \ud574\ub2f9 \uc790\ub9ac\uc5d0 \uc74c\uc18c\uac00 \uc5c6\ub2e4\ub294 \uc758\ubbf8\uc785\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 `[\u3131:\u314f:0\u3134\u314e]`\uc740 `[\uac00\uac04\uac1b]`\uc640 \uac19\uc2b5\ub2c8\ub2e4. \ucd08\uc131\uacfc \uc911\uc131\uc5d0\ub294 \uae30\ubcf8\uc801\uc73c\ub85c\ub294 `0`\uc744 \uc0ac\uc6a9\ud558\ub294 \uac83\uc774 \uae08\uc9c0\ub418\uc9c0\ub9cc \ud2b9\ubcc4\ud55c \uacbd\uc6b0, \ud55c \uc74c\uc18c\ub97c \ub098\ud0c0\ub0b4\uace0 \uc2f6\uc744 \ub54c, \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 `[0:\u314f-\u315c]` \ud639\uc740 `[0:\u314f-\u315c:0]`\uc740 `[\u314f\u3150\u3151\u3152\u3153\u3154\u3155\u3156\u3157\u3158\u3159\u315a\u315b\u315c]`\ub97c \uc758\ubbf8\ud569\ub2c8\ub2e4. \ub610\ud55c `[\u3131-\u3139:0]` \ub610\ub294 `[\u3131-\u3139:0:0]`\uc740 `[\u3131\u3132\u3134\u3137\u3138\u3139]`\ub97c \uc758\ubbf8\ud569\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \ucd08\uc131\uacfc \uc911\uc131\uc5d0 `0`\uc774 \ub4e4\uc5b4\uac00\ub294 \uacbd\uc6b0\ub294 \uba87 \uac00\uc9c0 \uc81c\uc57d\uc774 \uc788\ub294\ub370\uc694, \uc6b0\uc120 `0`\uc774 \ub4e4\uc5b4\uac00\uba74 \uadf8 \uc790\ub9ac\uc5d0\ub294 `0` \uc678\uc5d0 \ub2e4\ub978 \uc74c\uc18c\ub97c \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c\uc740 \uba87 \uac00\uc9c0 \uc870\ud569\uc740 `0`\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\ub2e4\ub294 \uac83\uc785\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 `[\u3131:0:\u314e]`\uc744 \uc0dd\uac01\ud574 \ubd05\uc2dc\ub2e4. \uc774\ub7f0 \ud55c\uae00\uc740 \uacf0\uacf0\ud788 \uc0dd\uac01\ud574\ub3c4 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \ud615\ud0dc\ub294 \uc544\ub2d9\ub2c8\ub2e4. \uc774\uac83 \ubfd0\ub9cc \uc544\ub2c8\ub77c `[0:\u314f:\u314e]`\ub098 `[0:0:0]`\ub3c4 \uae08\uc9c0\ub429\ub2c8\ub2e4.\n\n<!-- ### compilestr \ubc0f make_korean \uc0ac\uc6a9 \ubc0f \uc751\uc6a9\n\n\uae30\ubcf8\uc801\uc73c\ub85c compile\uc740 \ub2e8\uc21c\ud788 compilestr()\uc744 \uac70\uce5c \ubb38\uc790\uc5f4\uc744 re.complie()\uc5d0 \uac10\uc2f8\ub294 \uac83\uc5d0 \ubd88\uacfc\ud569\ub2c8\ub2e4.\n\n```python\ndef compile(pattern, flags=0):\n return re.compile(compilestr(pattern), flags)\n```\n\n\ub530\ub77c\uc11c \ucc98\ub9ac \uc804 \uc0c1\ud0dc\uc758 \uad6c\ubb38\uc744 \uc54c\uace0 \uc2f6\ub2e4\uba74 compilestr\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n\n\ub9cc\uc57d regex \uad6c\ubb38\uc774 \uad81\uae08\ud55c \uac83\uc774 \uc544\ub2c8\ub77c \uadf8\ub0e5 \uac00\ub2a5\ud55c \ubaa8\ub4e0 \ud55c\uae00 \uc870\ud569\uc744 \uc54c\uace0 \uc2f6\uc740 \uacbd\uc6b0\uc5d4 make_korean\uc758 \uae30\ub2a5\uc744 \uc751\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n\n```python\n# \ubc1b\uce68\uc774 \u3134\uc778 \uae00\uc790 \ubaa8\ub450 \ubf51\uae30\nimport kre\nprint(kre.make_korean('[::\u3134]'))\n# \uac04\uac20\uac3c\uac58...\ud738\ud754\ud770\ud78c\n``` -->\n\n## \uc815\uaddc \uc74c\uc6b4 \uc120\ud589 \uc790\ubaa8\uc21c\n\n`regular_first` \uc790\ubaa8\uc21c('\uc815\uaddc \uc74c\uc6b4 \uc120\ud589 \uc790\ubaa8\uc21c' \uc774\ud558 '\uc120\ud589 \uc790\ubaa8\uc21c')\uc740 \ub41c\uc18c\ub9ac\ub098 \uc790\uc74c\uad70, \ud569\uc6a9\uc790\ub4e4\uc774 \ub4a4\ub85c \ubcf4\ub0b4\uc9c4 \uc21c\uc11c\uc785\ub2c8\ub2e4.\n\n\uae30\ubcf8 \uc21c\uc11c(\uc720\ub2c8\ucf54\ub4dc \uc21c\uc11c \ub610\ub294 \uc0ac\uc804\uc21c)\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:\n\n* \ucd08\uc131: \u3131\u3132\u3134\u3137\u3138\u3139\u3141\u3142\u3143\u3145\u3146\u3147\u3148\u3149\u314a\u314b\u314c\u314d\u314e\n* \uc911\uc131: \u314f\u3150\u3151\u3152\u3153\u3154\u3155\u3156\u3157\u3158\u3159\u315a\u315b\u315c\u315d\u315e\u315f\u3160\u3161\u3162\u3163\n* \uc885\uc131: \u3131\u3132\u3133\u3134\u3135\u3136\u3137\u3139\u313a\u313b\u313c\u313d\u313e\u313f\u3140\u3141\u3142\u3144\u3145\u3146\u3147\u3148\u314a\u314b\u314c\u314d\u314e\n\n\ud558\uc9c0\ub9cc \uc120\ud589 \uc790\ubaa8\uc21c\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:\n\n* \ucd08\uc131: \u3131\u3134\u3137\u3139\u3141\u3142\u3145\u3147\u3148\u314a\u314b\u314c\u314d\u314e\u3132\u3138\u3143\u3146\u3149\n* \uc911\uc131: \u314f\u3151\u3153\u3155\u3157\u315b\u315c\u3160\u3161\u3163\u3150\u3152\u3154\u3156\u3158\u3159\u315a\u315d\u315e\u315f\u3162\n* \uc885\uc131: \u3131\u3134\u3137\u3139\u3141\u3142\u3145\u3147\u3148\u314a\u314b\u314c\u314d\u314e\u3132\u3133\u3135\u3136\u313a\u313b\u313c\u313d\u313e\u313f\u3140\u3144\u3146\n\n\uc774 \uc21c\uc11c\ub294 `-`\ub97c \ud1b5\ud574 \uac12\uc5d0 \uc811\uadfc\ud560 \ub54c \uc0ac\uc6a9\ub418\uc9c0\ub9cc, \uc815\ub82c\uc740 \uc77c\ubc18\uc801\uc778 \uc720\ub2c8\ucf54\ub4dc \uc21c\uc11c(\uc0ac\uc804 \uc21c\uc11c)\ub300\ub85c \uc815\ub82c\ub429\ub2c8\ub2e4.\n\n\uc608\ub97c \ub4e4\uc5b4 `[\u3131-\u314e:0:0]`\uc740 \uae30\ubcf8 \uc21c\uc11c\uc5d0\uc11c\ub294 \ubaa8\ub4e0 \ucd08\uc131\uc744 \ud3ec\ud568\ud558\ub294 `[\u3131\u3132\u3134\u3137\u3138\u3139\u3141\u3142\u3143\u3145\u3146\u3147\u3148\u3149\u314a\u314b\u314c\u314d\u314e]`\uc774\uc9c0\ub9cc, \uc120\ud589 \uc790\ubaa8\uc21c\uc5d0\uc11c\ub294 `[\u3131\u3134\u3137\u3139\u3141\u3142\u3145\u3147\u3148\u314a\u314b\u314c\u314d\u314e]`\uc785\ub2c8\ub2e4.\n\n\ub2e4\uc74c\uacfc \uac19\uc740 \ubc29\uc2dd\uc73c\ub85c \uc120\ud589 \uc790\ubaa8\uc21c\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n\n```python\nimport kre\n\nkre.compile(\"[\u3131-\u314e:\u314f]\", order=\"regular_first\") # \uc120\ud589 \uc790\ubaa8\uc21c\nkre.compile(\"[\u3131-\u314e:\u314f]\", order=\"default\") # \uae30\ubcf8\uac12(\uc0ac\uc804\uc21c)\n```\n\n\uc815\uaddc\ud45c\ud604\uc2dd \ud50c\ub798\uadf8\uac00 \ub354 \uba3c\uc800 \uc624\uae30 \ub54c\ubb38\uc5d0 \uc8fc\uc758\ud574\uc57c \ud569\ub2c8\ub2e4.\n\n```python\nimport kre\n\nkre.compile(\"[\u3131-\u314e:\u314f]\", \"regular_first\") # XXX \uc624\ub958! \uc815\uaddc\ud45c\ud604\uc2dd flag\ub85c \ucc98\ub9ac\ub428\nkre.compile(\"[\u3131-\u314e:\u314f]\", order=\"default\") # \uc62c\ubc14\ub978 \uc0ac\uc6a9\n```\n\n## release note\n\n* 0.2.0: `order` \ud30c\ub77c\ubbf8\ud130 \ucd94\uac00\n* 0.1.0: \ub7ec\uc2a4\ud2b8 \ubc14\uc778\ub529\uc73c\ub85c \uc644\uc804\ud788 \ucc98\uc74c\ubd80\ud130 \uc7ac\uc81c\uc791, \uae30\uc874 \ubc84\uc804\uacfc \uc644\uc804\ud788 \ub2e4\ub984\n* 0.0.5: make_korean \ucd94\uac00, \uc774\ub984 \ubcc0\uacbd, \ud0c0\uc785 \ucd94\uac00, \ub9ac\ud329\ud1a0\ub9c1, \uac80\uc0ac \ucd94\uac00\n* 0.0.4: readme \ubcf4\uac15, \ub9ac\ud329\ud1a0\ub9c1\n* 0.0.3(\uccab \uc548\uc815\ud654 \ubc84\uc804): \uc2dc\uc791\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Regex for Korean",
"version": "0.2.0",
"project_urls": {
"Funding": "https://toss.me/ilotoki",
"Source": "https://github.com/ilotoki0804/korean-regex",
"Tracker": "https://github.com/ilotoki0804/korean-regex/issues"
},
"split_keywords": [
"regex",
" korean"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "5c7b17408661c725469d93bfed78600fb2d529c48c06c8f1396a8bd35309473e",
"md5": "3b000b350d9cb070a54d592bb148bc09",
"sha256": "c90fffc70ae59e028061e101e4f9a68fcac78278b0d138536e0be41059996b69"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "3b000b350d9cb070a54d592bb148bc09",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 840012,
"upload_time": "2024-05-15T13:44:58",
"upload_time_iso_8601": "2024-05-15T13:44:58.039463Z",
"url": "https://files.pythonhosted.org/packages/5c/7b/17408661c725469d93bfed78600fb2d529c48c06c8f1396a8bd35309473e/korean_regex-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abb40f4b6bc28c2e0cf604aaced3c62d5e7679b8d496b90443bb0832c6034408",
"md5": "8dcd816a0051e2a97edcde3d3ef6eb5d",
"sha256": "fb5c64cb3d6ac7591e2ddc4d5d89c9450761174bfeecacb7e306a8707216bebc"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8dcd816a0051e2a97edcde3d3ef6eb5d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 789297,
"upload_time": "2024-05-15T13:44:50",
"upload_time_iso_8601": "2024-05-15T13:44:50.174426Z",
"url": "https://files.pythonhosted.org/packages/ab/b4/0f4b6bc28c2e0cf604aaced3c62d5e7679b8d496b90443bb0832c6034408/korean_regex-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca52fd5dc31049a65806dd1ebfde69aab82070ecf73075ae2523f1a767046271",
"md5": "272fc5cd643033cf2f0b4dcc28a37825",
"sha256": "6ba48224d62af057988c3981c48dafbeff15a6b95e734c5cfb7763a6ff4f8280"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "272fc5cd643033cf2f0b4dcc28a37825",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1661115,
"upload_time": "2024-05-15T13:43:16",
"upload_time_iso_8601": "2024-05-15T13:43:16.182775Z",
"url": "https://files.pythonhosted.org/packages/ca/52/fd5dc31049a65806dd1ebfde69aab82070ecf73075ae2523f1a767046271/korean_regex-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd5805018de10a270a75322e367a503873b6ace7311054087e53e533061d41dc",
"md5": "6aaecd9a5550d5e96d47a448581a258e",
"sha256": "e99b63707f384cc7dc17282d69476c6f87fb6d697ac4c08e65758f3d0f78c1c6"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "6aaecd9a5550d5e96d47a448581a258e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1607331,
"upload_time": "2024-05-15T13:43:31",
"upload_time_iso_8601": "2024-05-15T13:43:31.926858Z",
"url": "https://files.pythonhosted.org/packages/dd/58/05018de10a270a75322e367a503873b6ace7311054087e53e533061d41dc/korean_regex-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc96a72b7cb3dc964d007b609ef4c4281edea7611d5c01bbc94b2d2de279e10f",
"md5": "37a91091c298ed5217833ea5dcbdc47e",
"sha256": "8fcae5f798d6ab2aeda26d72e7379cdb2f09c6d16274d779010450b2de14660b"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "37a91091c298ed5217833ea5dcbdc47e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1703801,
"upload_time": "2024-05-15T13:43:49",
"upload_time_iso_8601": "2024-05-15T13:43:49.315175Z",
"url": "https://files.pythonhosted.org/packages/bc/96/a72b7cb3dc964d007b609ef4c4281edea7611d5c01bbc94b2d2de279e10f/korean_regex-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f22a50c5737d17e8f015ca74475ad7f9e71389be701c33e809b6648112e4d044",
"md5": "a2c3e9fe0221a118479486f754e929a4",
"sha256": "f57a57498f5195682eabdd0877126ef409389d13c1fb4c25896f04433a33c0e7"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a2c3e9fe0221a118479486f754e929a4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1849482,
"upload_time": "2024-05-15T13:44:04",
"upload_time_iso_8601": "2024-05-15T13:44:04.239583Z",
"url": "https://files.pythonhosted.org/packages/f2/2a/50c5737d17e8f015ca74475ad7f9e71389be701c33e809b6648112e4d044/korean_regex-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "214dacbdac391c1323be5355b0900cb7ef9692eedfa3214a71db8b8d529863ba",
"md5": "9ade091b4efa942543486ca9da2cc208",
"sha256": "c88827c607413b173774fe7872fdeee2fb6596a6bbb86f6b642219d4a6800a63"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9ade091b4efa942543486ca9da2cc208",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1694559,
"upload_time": "2024-05-15T13:44:35",
"upload_time_iso_8601": "2024-05-15T13:44:35.291181Z",
"url": "https://files.pythonhosted.org/packages/21/4d/acbdac391c1323be5355b0900cb7ef9692eedfa3214a71db8b8d529863ba/korean_regex-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "654bf683bffdbef1fb433cc38aec5f17b8caf1e26e012ba8c59b0b3717638425",
"md5": "bd6039fbaaf950429c9805406933be77",
"sha256": "528ceb677c5a710cbe3b79dc54b08c6e0f1c75344912f68fe1794ef174ddc59a"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "bd6039fbaaf950429c9805406933be77",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1682850,
"upload_time": "2024-05-15T13:44:18",
"upload_time_iso_8601": "2024-05-15T13:44:18.651632Z",
"url": "https://files.pythonhosted.org/packages/65/4b/f683bffdbef1fb433cc38aec5f17b8caf1e26e012ba8c59b0b3717638425/korean_regex-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "337a027f47895541a1c035f32ec02b9f4ab59ac6363b85e512c68c79b3faebcb",
"md5": "c100659d206b5486e90a2620ab7d59dc",
"sha256": "7b66f9570016e0aaa1d08d197808cb3f6131d5d1f806a6550069b37377b43e92"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "c100659d206b5486e90a2620ab7d59dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 626112,
"upload_time": "2024-05-15T13:45:14",
"upload_time_iso_8601": "2024-05-15T13:45:14.731501Z",
"url": "https://files.pythonhosted.org/packages/33/7a/027f47895541a1c035f32ec02b9f4ab59ac6363b85e512c68c79b3faebcb/korean_regex-0.2.0-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fd31771eb98b62992989bf63fcd0d7fa068aa8f4fa6e78d85b743792ee73c079",
"md5": "d52a1e365dba917d82c8ae1393bff3f9",
"sha256": "6adc7cc605890c254227d57a2d994825bf9f04fa20ce5ab1857d4fd6db87e001"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "d52a1e365dba917d82c8ae1393bff3f9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 688278,
"upload_time": "2024-05-15T13:45:04",
"upload_time_iso_8601": "2024-05-15T13:45:04.700163Z",
"url": "https://files.pythonhosted.org/packages/fd/31/771eb98b62992989bf63fcd0d7fa068aa8f4fa6e78d85b743792ee73c079/korean_regex-0.2.0-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3bf6e453c8b26606f3f069767959615f6d1afe8ccfb3f925865c2f23b920f993",
"md5": "b222d3a0315bb1f5f56cf9efebe0e4fd",
"sha256": "81f3252c6270391655537ca78125be9e699ca1de04c828688a8f770bb86dd7ab"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b222d3a0315bb1f5f56cf9efebe0e4fd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 839661,
"upload_time": "2024-05-15T13:44:59",
"upload_time_iso_8601": "2024-05-15T13:44:59.559231Z",
"url": "https://files.pythonhosted.org/packages/3b/f6/e453c8b26606f3f069767959615f6d1afe8ccfb3f925865c2f23b920f993/korean_regex-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b5934255d372982711b3d92632b424ef45d1317399800eca467c6dc8d7de85b1",
"md5": "8e6870af28cf1b474e5fbcd88d4a2906",
"sha256": "fd20f991b87f42b30190ff0ebff10c28493d7bc963319ca374e27766c8c0a0c5"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8e6870af28cf1b474e5fbcd88d4a2906",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 789311,
"upload_time": "2024-05-15T13:44:52",
"upload_time_iso_8601": "2024-05-15T13:44:52.306255Z",
"url": "https://files.pythonhosted.org/packages/b5/93/4255d372982711b3d92632b424ef45d1317399800eca467c6dc8d7de85b1/korean_regex-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9abd2e9d40abdbc058b060a1e27cf75a5067ae7e62ac3ef425160806a93139aa",
"md5": "c85a7f1058060f796788981baf94c8ad",
"sha256": "f6481d2cff53624d1f890ea381445ebacda42c5bc60dd80f8b71656de85d0402"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c85a7f1058060f796788981baf94c8ad",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1660702,
"upload_time": "2024-05-15T13:43:17",
"upload_time_iso_8601": "2024-05-15T13:43:17.883463Z",
"url": "https://files.pythonhosted.org/packages/9a/bd/2e9d40abdbc058b060a1e27cf75a5067ae7e62ac3ef425160806a93139aa/korean_regex-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6979462d09789c3cc363085f5d757669c0bb0cc84be7f7b14aa4fccfd4d854fd",
"md5": "ab83261159c5288ac4a5cf7ee3d63400",
"sha256": "7150e87c171a53b35b7cfa5bdbb9c5e4b3c6e3abb116f15d215fb93581925a6d"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ab83261159c5288ac4a5cf7ee3d63400",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1606961,
"upload_time": "2024-05-15T13:43:35",
"upload_time_iso_8601": "2024-05-15T13:43:35.538754Z",
"url": "https://files.pythonhosted.org/packages/69/79/462d09789c3cc363085f5d757669c0bb0cc84be7f7b14aa4fccfd4d854fd/korean_regex-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68e965b1f5720007835fb09cf463d49ff57b34c8295cff04fdc959e961cd0a6c",
"md5": "3d1c97be05f8003b184f8acfa37a6700",
"sha256": "874d64e9b8db2be126f323a5c2cd77579f37feb784c6442adbdd1992cb33fae3"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3d1c97be05f8003b184f8acfa37a6700",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1703717,
"upload_time": "2024-05-15T13:43:50",
"upload_time_iso_8601": "2024-05-15T13:43:50.976429Z",
"url": "https://files.pythonhosted.org/packages/68/e9/65b1f5720007835fb09cf463d49ff57b34c8295cff04fdc959e961cd0a6c/korean_regex-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ceaf9e2d82c19d088bbd2c74d0abd411069a3fef40f13d2273e0953ecd18d6e7",
"md5": "33f0b4c2cf059f59745a4bb363507588",
"sha256": "c655ec32fd6c019768d3c6d1fdfaeb8c1568a84094084f6dcd2fd17e02c15c37"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "33f0b4c2cf059f59745a4bb363507588",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1848673,
"upload_time": "2024-05-15T13:44:05",
"upload_time_iso_8601": "2024-05-15T13:44:05.743467Z",
"url": "https://files.pythonhosted.org/packages/ce/af/9e2d82c19d088bbd2c74d0abd411069a3fef40f13d2273e0953ecd18d6e7/korean_regex-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1eba89b6c6bfa1a8be4521d4be633f69cf201003f03379e3c750a30edc423079",
"md5": "ef0bab71fc3fc5820b871a10201ffe34",
"sha256": "c45511a447e541d910f5bf53a2e5ba6499677fbf715d57198df041641a19b8d3"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ef0bab71fc3fc5820b871a10201ffe34",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1694564,
"upload_time": "2024-05-15T13:44:37",
"upload_time_iso_8601": "2024-05-15T13:44:37.146215Z",
"url": "https://files.pythonhosted.org/packages/1e/ba/89b6c6bfa1a8be4521d4be633f69cf201003f03379e3c750a30edc423079/korean_regex-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae814f0e63dcde37a5aba8e91dcdf0b502e962ab30925659239948a4f4289569",
"md5": "13b6c011a7db81c8c43fa5edc5d37acd",
"sha256": "0ded7307f14160d99dd1b10f37b744ce4f36db15de004158e4a4c69514eb29ff"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "13b6c011a7db81c8c43fa5edc5d37acd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1682428,
"upload_time": "2024-05-15T13:44:20",
"upload_time_iso_8601": "2024-05-15T13:44:20.807896Z",
"url": "https://files.pythonhosted.org/packages/ae/81/4f0e63dcde37a5aba8e91dcdf0b502e962ab30925659239948a4f4289569/korean_regex-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29f295940026685c617ddc967114fab70383d25c6ed7e0fcd35d3add2ec2954a",
"md5": "0b812a859a229ceb5188f84341c6eadf",
"sha256": "4ed449486525e31d26baedfbfbdf91a792244080ca8b9bfb17a99c1bcd4645e7"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "0b812a859a229ceb5188f84341c6eadf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 626030,
"upload_time": "2024-05-15T13:45:16",
"upload_time_iso_8601": "2024-05-15T13:45:16.232864Z",
"url": "https://files.pythonhosted.org/packages/29/f2/95940026685c617ddc967114fab70383d25c6ed7e0fcd35d3add2ec2954a/korean_regex-0.2.0-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd2d5b5a320552b67fcc1bc9e0ab8d959a45761a42f8e6a6decfa92e41d65fbd",
"md5": "feddc8132d71c7bb332ed887e7cb8848",
"sha256": "36d3795ca0481de3ee36f2a0cfd7e678e55780a45025942001f2f1f482cc6897"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "feddc8132d71c7bb332ed887e7cb8848",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 688171,
"upload_time": "2024-05-15T13:45:07",
"upload_time_iso_8601": "2024-05-15T13:45:07.025271Z",
"url": "https://files.pythonhosted.org/packages/dd/2d/5b5a320552b67fcc1bc9e0ab8d959a45761a42f8e6a6decfa92e41d65fbd/korean_regex-0.2.0-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "195be023922bc57a75abb5ae7f59e168ba9dfb27306298df0c9309df3b830824",
"md5": "2fddc111d395d93accb52db50ec75a4c",
"sha256": "7db9cfb2e3d053e78f6820c1fc1317a1854c7dad66ddbf458bb1fe5935340bf5"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2fddc111d395d93accb52db50ec75a4c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 839411,
"upload_time": "2024-05-15T13:45:01",
"upload_time_iso_8601": "2024-05-15T13:45:01.118694Z",
"url": "https://files.pythonhosted.org/packages/19/5b/e023922bc57a75abb5ae7f59e168ba9dfb27306298df0c9309df3b830824/korean_regex-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "313b3638baeb204aa326df48320d5555a9ad02e602697158d93a9711fe237609",
"md5": "225aac9bdb454a80a5afba01ed13ecb0",
"sha256": "f656a6fcc22f9443cc53b00f4db54cbee9101f1a25c6cbc82d30abc4bd4d14f2"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "225aac9bdb454a80a5afba01ed13ecb0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 788782,
"upload_time": "2024-05-15T13:44:54",
"upload_time_iso_8601": "2024-05-15T13:44:54.948064Z",
"url": "https://files.pythonhosted.org/packages/31/3b/3638baeb204aa326df48320d5555a9ad02e602697158d93a9711fe237609/korean_regex-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d2620c6f25033381e734aa2f67da1be1dc1c997e8a51192da8bcf509f11e671",
"md5": "82a6575ad0cfb1827b21cdc630889489",
"sha256": "5ac8755f562cb417a89210cefa141aaab53a9aadf201fc0fb2fd8c144cd89e45"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "82a6575ad0cfb1827b21cdc630889489",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1660208,
"upload_time": "2024-05-15T13:43:19",
"upload_time_iso_8601": "2024-05-15T13:43:19.429336Z",
"url": "https://files.pythonhosted.org/packages/0d/26/20c6f25033381e734aa2f67da1be1dc1c997e8a51192da8bcf509f11e671/korean_regex-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfea65d405f9111492b8987dcb61177e8590418eeb87f3456748a159fca34237",
"md5": "29c489d8d8c30805ff627c0e168448a4",
"sha256": "82fe94ab02a201f6f411372da47e607aed5f25b246080ed6773e8e0f6e118324"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "29c489d8d8c30805ff627c0e168448a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1607346,
"upload_time": "2024-05-15T13:43:37",
"upload_time_iso_8601": "2024-05-15T13:43:37.214648Z",
"url": "https://files.pythonhosted.org/packages/cf/ea/65d405f9111492b8987dcb61177e8590418eeb87f3456748a159fca34237/korean_regex-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b816a8c119a0195dd2f159d419b8dede4b2356bbb66e75a3fd4d85c51c210b11",
"md5": "25232b6881a857a22904e05f9319c9f1",
"sha256": "4e7320163661984932ec4e45777076c0cce17d1ce12e87033d794e2b64503cdd"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "25232b6881a857a22904e05f9319c9f1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1701995,
"upload_time": "2024-05-15T13:43:52",
"upload_time_iso_8601": "2024-05-15T13:43:52.460768Z",
"url": "https://files.pythonhosted.org/packages/b8/16/a8c119a0195dd2f159d419b8dede4b2356bbb66e75a3fd4d85c51c210b11/korean_regex-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f4a26d6c3630ec8e46dc891a559c5835fe57317c86f7a16ea7f5b752d3f04cf",
"md5": "43951896e10b9319de61d87be3a6dff0",
"sha256": "fb75fe06fda1dfe368ec522a2c9fdd0db7f2c90df622dd5cb6e2a20433025c4a"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "43951896e10b9319de61d87be3a6dff0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1841736,
"upload_time": "2024-05-15T13:44:07",
"upload_time_iso_8601": "2024-05-15T13:44:07.942487Z",
"url": "https://files.pythonhosted.org/packages/0f/4a/26d6c3630ec8e46dc891a559c5835fe57317c86f7a16ea7f5b752d3f04cf/korean_regex-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3bcc21a311ab76c57cb238d95e84139ad68114369ebfe1f1a300ef2a5e437603",
"md5": "6485b780cdc18ebd64ce6813c7f53fe5",
"sha256": "e3ebe5525aff933e8fc8d67e2dcb61a3b2a23f0c2477b3e7d8c778f9621b7da4"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6485b780cdc18ebd64ce6813c7f53fe5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1693610,
"upload_time": "2024-05-15T13:44:39",
"upload_time_iso_8601": "2024-05-15T13:44:39.401086Z",
"url": "https://files.pythonhosted.org/packages/3b/cc/21a311ab76c57cb238d95e84139ad68114369ebfe1f1a300ef2a5e437603/korean_regex-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8acc9e1b61160eb4240f6eda3a4c870e412345109450c206d36724ef7a0cb236",
"md5": "58df4014ace895880664e51fbf8bce44",
"sha256": "aa257cf42bcef56edaa6c4ae0e858d4f5d4c3039d13806714bd1b6f1679796b5"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "58df4014ace895880664e51fbf8bce44",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1681975,
"upload_time": "2024-05-15T13:44:22",
"upload_time_iso_8601": "2024-05-15T13:44:22.915406Z",
"url": "https://files.pythonhosted.org/packages/8a/cc/9e1b61160eb4240f6eda3a4c870e412345109450c206d36724ef7a0cb236/korean_regex-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7375ee0719eaf944e9d9d288225b7f7f273b1730172630c94a55242cae117689",
"md5": "3a33067bfa8a43e97824c84a5cc6ea76",
"sha256": "e8d0835f05bf0f00e66ac15239f99c993f1153f73b7d6cf1aca33984f7a7b4cc"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "3a33067bfa8a43e97824c84a5cc6ea76",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 625976,
"upload_time": "2024-05-15T13:45:17",
"upload_time_iso_8601": "2024-05-15T13:45:17.916273Z",
"url": "https://files.pythonhosted.org/packages/73/75/ee0719eaf944e9d9d288225b7f7f273b1730172630c94a55242cae117689/korean_regex-0.2.0-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d2c67aa553b2ee86d85a5c2da6c1dd9f95f3f5e486f3123d43fd221a5d81ba1",
"md5": "331a35d2e321bbb863ba6aae93344c23",
"sha256": "1b2c3bf703afaa41ec35253d6f12c5313896acd4771c0b04f3f0cffc127224b6"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "331a35d2e321bbb863ba6aae93344c23",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 688263,
"upload_time": "2024-05-15T13:45:08",
"upload_time_iso_8601": "2024-05-15T13:45:08.897575Z",
"url": "https://files.pythonhosted.org/packages/8d/2c/67aa553b2ee86d85a5c2da6c1dd9f95f3f5e486f3123d43fd221a5d81ba1/korean_regex-0.2.0-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e4247d2842b36a595ab599f51b3fd23ee1c74dbc2ddb357701e8e7c966276a38",
"md5": "8825e14e2701cdc6c903e0e5136aa3d8",
"sha256": "904550e477e81ba54c45d8bc17553c0234e89951b0336b2314641e4ed27f260a"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8825e14e2701cdc6c903e0e5136aa3d8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1661179,
"upload_time": "2024-05-15T13:43:22",
"upload_time_iso_8601": "2024-05-15T13:43:22.669507Z",
"url": "https://files.pythonhosted.org/packages/e4/24/7d2842b36a595ab599f51b3fd23ee1c74dbc2ddb357701e8e7c966276a38/korean_regex-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32adc09654407948e429b768037d74418a775e93a3d29911a5eb402541f33eec",
"md5": "edb9126a3bcfe0584046b232b67e2c7c",
"sha256": "1a3310a25cd673e9f801343e249e897a9eb22d477d7cb0e552c64826c82eb4d7"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "edb9126a3bcfe0584046b232b67e2c7c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1607268,
"upload_time": "2024-05-15T13:43:38",
"upload_time_iso_8601": "2024-05-15T13:43:38.781651Z",
"url": "https://files.pythonhosted.org/packages/32/ad/c09654407948e429b768037d74418a775e93a3d29911a5eb402541f33eec/korean_regex-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6ceccc39e796cea9fb5ce682ee9000176c3913fa033ff5cc1b982355df6575e",
"md5": "8c77529aadb16516cac9386bf50d24a6",
"sha256": "366c31540dcbece6014a30fc676ada709325927cdd349d6d3877363c5148fb51"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8c77529aadb16516cac9386bf50d24a6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1703588,
"upload_time": "2024-05-15T13:43:54",
"upload_time_iso_8601": "2024-05-15T13:43:54.493227Z",
"url": "https://files.pythonhosted.org/packages/d6/ce/ccc39e796cea9fb5ce682ee9000176c3913fa033ff5cc1b982355df6575e/korean_regex-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c00b084d1803791f079652e6c63e8b29019cdfe02705ed1f1ae232cd2002613b",
"md5": "14829ef0d665ca762b1f0b95390a0cc1",
"sha256": "937119d32950db88512cd7637b494fee4d85a750414ff123cc2b76739e83c937"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "14829ef0d665ca762b1f0b95390a0cc1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1849094,
"upload_time": "2024-05-15T13:44:09",
"upload_time_iso_8601": "2024-05-15T13:44:09.848354Z",
"url": "https://files.pythonhosted.org/packages/c0/0b/084d1803791f079652e6c63e8b29019cdfe02705ed1f1ae232cd2002613b/korean_regex-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "387b7b3d80f48f50f748681e7c3f787dfa09b211877e6ed862817e6ff35fd2fb",
"md5": "c232bfcf726fc08be1d58ca1f53e5923",
"sha256": "e5fb6b720e5b90fe09b17631940bcf8ab9da2e1420ca44a76733562960df027c"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c232bfcf726fc08be1d58ca1f53e5923",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1694201,
"upload_time": "2024-05-15T13:44:41",
"upload_time_iso_8601": "2024-05-15T13:44:41.066120Z",
"url": "https://files.pythonhosted.org/packages/38/7b/7b3d80f48f50f748681e7c3f787dfa09b211877e6ed862817e6ff35fd2fb/korean_regex-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1dd6a24a47187fe4d2c22ef97930471aa0c01857bf7cbddce378fea67b0d4bed",
"md5": "c8cedd9c19977ec68211a92a92d27c38",
"sha256": "ed2c4ff461ea5f8c7224cf2441acd3388ee6c66ddf3c10d073f4861bc087c77a"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c8cedd9c19977ec68211a92a92d27c38",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1682472,
"upload_time": "2024-05-15T13:44:25",
"upload_time_iso_8601": "2024-05-15T13:44:25.721984Z",
"url": "https://files.pythonhosted.org/packages/1d/d6/a24a47187fe4d2c22ef97930471aa0c01857bf7cbddce378fea67b0d4bed/korean_regex-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7541a8b298aaf50cbd7f7a59b00d42250d2cf4e0b6ba8a3d8451fe5deddbb5ae",
"md5": "575dbcf7a8d0defbf1666609b1c08418",
"sha256": "b0a95aa870f1ed6b0353a648499e6773a497028a69ea6b823b30869a92262dc2"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "575dbcf7a8d0defbf1666609b1c08418",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 625719,
"upload_time": "2024-05-15T13:45:20",
"upload_time_iso_8601": "2024-05-15T13:45:20.199722Z",
"url": "https://files.pythonhosted.org/packages/75/41/a8b298aaf50cbd7f7a59b00d42250d2cf4e0b6ba8a3d8451fe5deddbb5ae/korean_regex-0.2.0-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfdb6d4ade1b8c5d400f27d62a7884fd9f41a02f718ef91e140b2d78bb2bfa23",
"md5": "248beab7079c30027a4ea1407f52024b",
"sha256": "f4d7807ebc5da18afedd529c5a9ed73247ddffc5050db508509a7e1200159853"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "248beab7079c30027a4ea1407f52024b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 688121,
"upload_time": "2024-05-15T13:45:11",
"upload_time_iso_8601": "2024-05-15T13:45:11.074581Z",
"url": "https://files.pythonhosted.org/packages/bf/db/6d4ade1b8c5d400f27d62a7884fd9f41a02f718ef91e140b2d78bb2bfa23/korean_regex-0.2.0-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "40c98bddbc69147ba1bd08aa93466f810ebc05a1b63107305912df181a9b84ed",
"md5": "ef0328f2b3d85294bd74baf634f9c3ec",
"sha256": "245aa93e41bc72e8e648f97a573cfca4023ce75bc76d0239a81bb47b934edd1a"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ef0328f2b3d85294bd74baf634f9c3ec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 789306,
"upload_time": "2024-05-15T13:44:56",
"upload_time_iso_8601": "2024-05-15T13:44:56.428824Z",
"url": "https://files.pythonhosted.org/packages/40/c9/8bddbc69147ba1bd08aa93466f810ebc05a1b63107305912df181a9b84ed/korean_regex-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46b3a47e9d2f8bd9de3680964ba32f6745fc5a113644e1d15db3e5c42ed2629c",
"md5": "21e84ec76c316406d4cca1aba1e2dca9",
"sha256": "52e39bc7283ddd5d02ee855b90b572efb8a2ca587901fdb515eeca3f20ac67e3"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "21e84ec76c316406d4cca1aba1e2dca9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1660869,
"upload_time": "2024-05-15T13:43:25",
"upload_time_iso_8601": "2024-05-15T13:43:25.090238Z",
"url": "https://files.pythonhosted.org/packages/46/b3/a47e9d2f8bd9de3680964ba32f6745fc5a113644e1d15db3e5c42ed2629c/korean_regex-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c9146ede31271d942659bfa7f668bdf2bd780cded0e14a6d6bdfbb68ccf75483",
"md5": "a95f2a992652e2f3a23bc630a92aaa18",
"sha256": "215cad4e7616f2b5225b71f3a58ccf8ee9184553104ef745f69beb0391ff88f7"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a95f2a992652e2f3a23bc630a92aaa18",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1607076,
"upload_time": "2024-05-15T13:43:40",
"upload_time_iso_8601": "2024-05-15T13:43:40.910667Z",
"url": "https://files.pythonhosted.org/packages/c9/14/6ede31271d942659bfa7f668bdf2bd780cded0e14a6d6bdfbb68ccf75483/korean_regex-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67152311ba67d62c0e22037326af311c770c302bedde3c2f7e9576651ca37726",
"md5": "b740eb8ec9140ceba3ce47ff27e548fc",
"sha256": "f26b756b4c9372b3c046f7afd8cb8359dec27261b3d601dff695f5277d7ebb13"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b740eb8ec9140ceba3ce47ff27e548fc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1702701,
"upload_time": "2024-05-15T13:43:56",
"upload_time_iso_8601": "2024-05-15T13:43:56.375499Z",
"url": "https://files.pythonhosted.org/packages/67/15/2311ba67d62c0e22037326af311c770c302bedde3c2f7e9576651ca37726/korean_regex-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb26d00f3460b5fdd4905d830f2e9ad19cff08a53014f5ab1e29a08df5b5caa1",
"md5": "1c0bee654cce9f5a130a160c5c802638",
"sha256": "15f565eed37e960be61141caea3098bb89df5df232aa5a3a445853f32646e8bc"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1c0bee654cce9f5a130a160c5c802638",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1849160,
"upload_time": "2024-05-15T13:44:11",
"upload_time_iso_8601": "2024-05-15T13:44:11.483583Z",
"url": "https://files.pythonhosted.org/packages/cb/26/d00f3460b5fdd4905d830f2e9ad19cff08a53014f5ab1e29a08df5b5caa1/korean_regex-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "029124f61460f6c5fed7e312a59b4a96d7cfe8ead28969b60e2481a84215b399",
"md5": "0b6bd85b6fd595360a7f636be830589f",
"sha256": "56dd8bebbe17501a3fe0cf80d81463510ab8029d7b676f78cdfcf4feb79e380d"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0b6bd85b6fd595360a7f636be830589f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1694250,
"upload_time": "2024-05-15T13:44:43",
"upload_time_iso_8601": "2024-05-15T13:44:43.231560Z",
"url": "https://files.pythonhosted.org/packages/02/91/24f61460f6c5fed7e312a59b4a96d7cfe8ead28969b60e2481a84215b399/korean_regex-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c4a476eca3db02aea89fc509235408a290d323dedd069af0dce65437ab4c0f9",
"md5": "47391a352a3952437fbfc290d6860a51",
"sha256": "355161939e5f894562d6b25d270ab7f5a015d663ae2a85d37de711b3445ec7bb"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "47391a352a3952437fbfc290d6860a51",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1683197,
"upload_time": "2024-05-15T13:44:27",
"upload_time_iso_8601": "2024-05-15T13:44:27.513816Z",
"url": "https://files.pythonhosted.org/packages/1c/4a/476eca3db02aea89fc509235408a290d323dedd069af0dce65437ab4c0f9/korean_regex-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a27c1749dbe3ead12090ee380193c450dddc45faff878d819fcdfa7ceced9411",
"md5": "f49ca576e21d037f196a4e1fc229f4c5",
"sha256": "e23c4c61fc28edd2d0386d55e7aafdf6eacc10bfc2b6ca44da29c5d67849e4f9"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "f49ca576e21d037f196a4e1fc229f4c5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 626092,
"upload_time": "2024-05-15T13:45:21",
"upload_time_iso_8601": "2024-05-15T13:45:21.795067Z",
"url": "https://files.pythonhosted.org/packages/a2/7c/1749dbe3ead12090ee380193c450dddc45faff878d819fcdfa7ceced9411/korean_regex-0.2.0-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae0585d6891c13972dba3ee89d65b10d082ebc3425980e96a8f3cd9cc03a49ad",
"md5": "1392ba5b8e418eccebf11eedf9f0896c",
"sha256": "da10310f4f668b081796034cb5bc6ac43208b6fc966852b34eb7820bd0a929ec"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "1392ba5b8e418eccebf11eedf9f0896c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 688180,
"upload_time": "2024-05-15T13:45:13",
"upload_time_iso_8601": "2024-05-15T13:45:13.251065Z",
"url": "https://files.pythonhosted.org/packages/ae/05/85d6891c13972dba3ee89d65b10d082ebc3425980e96a8f3cd9cc03a49ad/korean_regex-0.2.0-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "641ab4cc229857676922aae491f28cb41fb328daa35fd609f772d3742de03ced",
"md5": "77f58b919090169830c1cd26f280b261",
"sha256": "2ab302e61a78b349338960fc46830c92d3ff2dd4ec513325b0cee03280055260"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "77f58b919090169830c1cd26f280b261",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1662323,
"upload_time": "2024-05-15T13:43:26",
"upload_time_iso_8601": "2024-05-15T13:43:26.859512Z",
"url": "https://files.pythonhosted.org/packages/64/1a/b4cc229857676922aae491f28cb41fb328daa35fd609f772d3742de03ced/korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22eb809d51e60a41817a22482c6082608f26f577b37ac6b3922c0cb712414261",
"md5": "ae66a0e82b7556998cae50b362a042e8",
"sha256": "7b093379a2280b8fa13b94e8fed81a5e6d5e21ea8b64abca77d4ea28f6b94fff"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ae66a0e82b7556998cae50b362a042e8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1608267,
"upload_time": "2024-05-15T13:43:43",
"upload_time_iso_8601": "2024-05-15T13:43:43.591461Z",
"url": "https://files.pythonhosted.org/packages/22/eb/809d51e60a41817a22482c6082608f26f577b37ac6b3922c0cb712414261/korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "91dfffc000967784f61070cd50cff78d38f46758bbff75a1036ec3abb2e9426d",
"md5": "fe89757c204f301e580069852ac9ca34",
"sha256": "9537c223d49cad8c3a6b76b3cd9163d2ef7b05291dc5a58f70184ae9e4a6e1e2"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fe89757c204f301e580069852ac9ca34",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1704748,
"upload_time": "2024-05-15T13:43:58",
"upload_time_iso_8601": "2024-05-15T13:43:58.636951Z",
"url": "https://files.pythonhosted.org/packages/91/df/ffc000967784f61070cd50cff78d38f46758bbff75a1036ec3abb2e9426d/korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4dad0435c7684fc5dc79711f6d14199f3f2669902f315b503407050f61182dcf",
"md5": "f0edb542973c087144d6533751d85bbd",
"sha256": "ce7cd8cf098e306e15ebca9847f742bdabde06d8b986402b1ec9d78af6eaed61"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f0edb542973c087144d6533751d85bbd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1851265,
"upload_time": "2024-05-15T13:44:13",
"upload_time_iso_8601": "2024-05-15T13:44:13.234201Z",
"url": "https://files.pythonhosted.org/packages/4d/ad/0435c7684fc5dc79711f6d14199f3f2669902f315b503407050f61182dcf/korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f39b2728adf325eef30d28253c3e57626feea5e9b6b3de33bd31f12748e4976b",
"md5": "3b97fb5df41abd04ba799cde7cd6b755",
"sha256": "e1f0177499f4844043cf1d7e2f8c39c4dca7dbd71389424d366c3666eb36de26"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3b97fb5df41abd04ba799cde7cd6b755",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1694910,
"upload_time": "2024-05-15T13:44:44",
"upload_time_iso_8601": "2024-05-15T13:44:44.759916Z",
"url": "https://files.pythonhosted.org/packages/f3/9b/2728adf325eef30d28253c3e57626feea5e9b6b3de33bd31f12748e4976b/korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ddc89693b05e4261af1b78784872d06f2119d386a01ed3b88fe175120775aab",
"md5": "f978d76eca98ad94c2b6d4d26157d06b",
"sha256": "abe7eaa52a017ae7e3c80c732b2f498b069e86a7555cbab16df511ddb6118f01"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "f978d76eca98ad94c2b6d4d26157d06b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1683070,
"upload_time": "2024-05-15T13:44:29",
"upload_time_iso_8601": "2024-05-15T13:44:29.138402Z",
"url": "https://files.pythonhosted.org/packages/6d/dc/89693b05e4261af1b78784872d06f2119d386a01ed3b88fe175120775aab/korean_regex-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f352080b86fec9b37f7f97d087a2d7db2ba1a3295143187fc2b12f1df2c255d",
"md5": "5c7e2e6d54e658a764dc6ca87b61253e",
"sha256": "2bd2073257c794584f5994ff61fa75b4266c0e80caf48060968d6cdc1979582e"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5c7e2e6d54e658a764dc6ca87b61253e",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 1662213,
"upload_time": "2024-05-15T13:43:28",
"upload_time_iso_8601": "2024-05-15T13:43:28.575160Z",
"url": "https://files.pythonhosted.org/packages/8f/35/2080b86fec9b37f7f97d087a2d7db2ba1a3295143187fc2b12f1df2c255d/korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1819153a8ba88ff3a92618fe7b353fdfb2453324f9926592510b6ebbc1d4514f",
"md5": "b9437ffdc872d664a9467506eb2e97c5",
"sha256": "2430fb5f8b36292d8cb9f13a9446b8923959752707d3e81a3dde567bda6f6b57"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b9437ffdc872d664a9467506eb2e97c5",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 1607906,
"upload_time": "2024-05-15T13:43:45",
"upload_time_iso_8601": "2024-05-15T13:43:45.179653Z",
"url": "https://files.pythonhosted.org/packages/18/19/153a8ba88ff3a92618fe7b353fdfb2453324f9926592510b6ebbc1d4514f/korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9d0a1425ffaba587691a0b9995ab317981671a0cfa9b6b368a6db4e8110cf78",
"md5": "3854902bd125df54abd6c03c922d62aa",
"sha256": "16d58d59f835bbd397b69bf3b48902dc67b89dad87b8a9c46156cea3172eee8b"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3854902bd125df54abd6c03c922d62aa",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 1704933,
"upload_time": "2024-05-15T13:44:00",
"upload_time_iso_8601": "2024-05-15T13:44:00.289465Z",
"url": "https://files.pythonhosted.org/packages/b9/d0/a1425ffaba587691a0b9995ab317981671a0cfa9b6b368a6db4e8110cf78/korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53816e069b55fd3f2610220b51c62df0222778f9745b42464ac76913466fbbc7",
"md5": "8336e68c2e44547dbe742f55a27c4dea",
"sha256": "1dc299cb692cb54490946f670e4b6c0a288d004a8beda0337c144c94c1e83844"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8336e68c2e44547dbe742f55a27c4dea",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 1851094,
"upload_time": "2024-05-15T13:44:14",
"upload_time_iso_8601": "2024-05-15T13:44:14.922738Z",
"url": "https://files.pythonhosted.org/packages/53/81/6e069b55fd3f2610220b51c62df0222778f9745b42464ac76913466fbbc7/korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15fcf0bcc786048de8cd1b731ed2610c3294888f7ace9ef74ae2dd894326e161",
"md5": "ba16f8591148e24cf854605613159081",
"sha256": "415178a882f83c5b2ba17d43b0c227830f67ba660ac64971548c0f4da5899631"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ba16f8591148e24cf854605613159081",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 1695077,
"upload_time": "2024-05-15T13:44:46",
"upload_time_iso_8601": "2024-05-15T13:44:46.427467Z",
"url": "https://files.pythonhosted.org/packages/15/fc/f0bcc786048de8cd1b731ed2610c3294888f7ace9ef74ae2dd894326e161/korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d4b62bf814f392ed4caa47d50c3890ba457c1ad55b0874d4ec412844b2a5627",
"md5": "4d971123dcd1b60ad73e58abed32c723",
"sha256": "c7f5b17bb2d6d2446e75aaea3349c1dd7142db509a1c0ef94b7b2d7894e2d795"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4d971123dcd1b60ad73e58abed32c723",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 1683196,
"upload_time": "2024-05-15T13:44:30",
"upload_time_iso_8601": "2024-05-15T13:44:30.878987Z",
"url": "https://files.pythonhosted.org/packages/0d/4b/62bf814f392ed4caa47d50c3890ba457c1ad55b0874d4ec412844b2a5627/korean_regex-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "075a2ded9ccf97b08411cd5d01be117ee0755612359e106f4b253e6c75ca3ba3",
"md5": "012ff7e76f294e1930820aa0fb5e2461",
"sha256": "f55797cf32f16f7f077e4628b62c2705c5b384aea62b619874950f39b819498d"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "012ff7e76f294e1930820aa0fb5e2461",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1662086,
"upload_time": "2024-05-15T13:43:30",
"upload_time_iso_8601": "2024-05-15T13:43:30.351471Z",
"url": "https://files.pythonhosted.org/packages/07/5a/2ded9ccf97b08411cd5d01be117ee0755612359e106f4b253e6c75ca3ba3/korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "467e879a79cc669fe777cd3b1cdcb312ccf47cd19ca8dad8df77e85db122e160",
"md5": "cba9e94e9588a69883a5bb8588b4c11d",
"sha256": "e00625639eeaddede55f0b4064ebe9d4ea681835dbdc4e77f7b9a911a6490942"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "cba9e94e9588a69883a5bb8588b4c11d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1608073,
"upload_time": "2024-05-15T13:43:47",
"upload_time_iso_8601": "2024-05-15T13:43:47.239673Z",
"url": "https://files.pythonhosted.org/packages/46/7e/879a79cc669fe777cd3b1cdcb312ccf47cd19ca8dad8df77e85db122e160/korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f30a82a3b86622885f8ec4099d7b75d50783b9adeaab4f396536b1b4920bd157",
"md5": "4d338139c3d4e425f2b7bd36abfba7da",
"sha256": "efbfe76ba89ee3484eb7eeeea749185e52c69d1db04cbe638a2ce665cb5ffc76"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4d338139c3d4e425f2b7bd36abfba7da",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1705081,
"upload_time": "2024-05-15T13:44:02",
"upload_time_iso_8601": "2024-05-15T13:44:02.198012Z",
"url": "https://files.pythonhosted.org/packages/f3/0a/82a3b86622885f8ec4099d7b75d50783b9adeaab4f396536b1b4920bd157/korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "817ce88bfdb2ecf83121e0deaa8fd0d7c22b59fdca096669c3a37e654e2288e0",
"md5": "d469d57f113b6c96b2af8d97d8b77b43",
"sha256": "95e9741cb29003bb9a53118ae6f765c2fac31e1e091d5e9b74bace876190e681"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d469d57f113b6c96b2af8d97d8b77b43",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1851210,
"upload_time": "2024-05-15T13:44:16",
"upload_time_iso_8601": "2024-05-15T13:44:16.777755Z",
"url": "https://files.pythonhosted.org/packages/81/7c/e88bfdb2ecf83121e0deaa8fd0d7c22b59fdca096669c3a37e654e2288e0/korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db865347b0fe399b77d144f6e11ef5ecac4531b98b4edd80ae125851d0a54ee4",
"md5": "82eeb43caed56b7ef1a59bff5726007e",
"sha256": "e6d13bf682488dab8454b022ccc9d323ccf8b14cef5bb237180b131539a8ee26"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "82eeb43caed56b7ef1a59bff5726007e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1694911,
"upload_time": "2024-05-15T13:44:48",
"upload_time_iso_8601": "2024-05-15T13:44:48.163646Z",
"url": "https://files.pythonhosted.org/packages/db/86/5347b0fe399b77d144f6e11ef5ecac4531b98b4edd80ae125851d0a54ee4/korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec8c33b98ae456b5a8d48a08b222daac75d61f78ed275d1226780f79c0c0643e",
"md5": "043de5fdf96f1d40309b60211dc8b3bb",
"sha256": "e26ee3ce2af4916740fd531ae9af742ee86fb4e349756edaa63c7cfaa42cfcdb"
},
"downloads": -1,
"filename": "korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "043de5fdf96f1d40309b60211dc8b3bb",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1683088,
"upload_time": "2024-05-15T13:44:32",
"upload_time_iso_8601": "2024-05-15T13:44:32.947466Z",
"url": "https://files.pythonhosted.org/packages/ec/8c/33b98ae456b5a8d48a08b222daac75d61f78ed275d1226780f79c0c0643e/korean_regex-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "505aa0d143df4fe312e08bb16156ce8978b131d8e947fc7420d83a9b6a09a1cf",
"md5": "aa73f877e86d38e243d81027969ad20a",
"sha256": "12081304e78d0d29a7535631c938e08ff2dfe2e1a1a79e9a0a5303156bff0839"
},
"downloads": -1,
"filename": "korean_regex-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "aa73f877e86d38e243d81027969ad20a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 15409,
"upload_time": "2024-05-15T13:45:02",
"upload_time_iso_8601": "2024-05-15T13:45:02.742363Z",
"url": "https://files.pythonhosted.org/packages/50/5a/a0d143df4fe312e08bb16156ce8978b131d8e947fc7420d83a9b6a09a1cf/korean_regex-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-15 13:45:02",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ilotoki0804",
"github_project": "korean-regex",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "korean-regex"
}