mojimoji


Namemojimoji JSON
Version 0.0.13 PyPI version JSON
download
home_pagehttp://github.com/studio-ousia/mojimoji
SummaryA fast converter between Japanese hankaku and zenkaku characters
upload_time2024-01-12 10:38:30
maintainer
docs_urlNone
authorStudio Ousia
requires_python>=3.7
license
keywords japanese
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            mojimoji
========

.. image:: https://github.com/studio-ousia/mojimoji/actions/workflows/test.yml/badge.svg
    :target: https://github.com/studio-ousia/mojimoji/actions/workflows/test.yml

.. image:: https://img.shields.io/pypi/v/mojimoji.svg
    :target: https://pypi.org/project/mojimoji/

.. image:: https://static.pepy.tech/personalized-badge/mojimoji?period=total&units=international_system&left_color=grey&right_color=orange&left_text=pip%20downloads
    :target: https://pypi.org/project/mojimoji/


A Cython-based fast converter between Japanese hankaku and zenkaku characters.

Installation
------------

.. code-block:: bash

    $ pip install mojimoji

Examples
--------

Zenkaku to Hankaku
^^^^^^^^^^^^^^^^^^

.. code-block:: python

    >>> import mojimoji
    >>> print(mojimoji.zen_to_han('アイウabc012'))
    アイウabc012
    >>> print(mojimoji.zen_to_han('アイウabc012', kana=False))
    アイウabc012
    >>> print(mojimoji.zen_to_han('アイウabc012', digit=False))
    アイウabc012
    >>> print(mojimoji.zen_to_han('アイウabc012', ascii=False))
    アイウabc012

Hankaku to Zenkaku
^^^^^^^^^^^^^^^^^^

.. code-block:: python

    >>> import mojimoji
    >>> print(mojimoji.han_to_zen('アイウabc012'))
    アイウabc012
    >>> print(mojimoji.han_to_zen('アイウabc012', kana=False))
    アイウabc012
    >>> print(mojimoji.han_to_zen('アイウabc012', digit=False))
    アイウabc012
    >>> print(mojimoji.han_to_zen('アイウabc012', ascii=False))
    アイウabc012


Benchmarks
----------

Library versions
^^^^^^^^^^^^^^^^

- mojimoji: 0.0.1
- `zenhan <https://pypi.python.org/pypi/zenhan>`_: 0.4
- `unicodedata <http://docs.python.org/2/library/unicodedata.html>`_: Bundled with Python 2.7.3

Results
^^^^^^^

.. code-block:: python

    In [19]: s = 'ABCDEFG012345' * 10

    In [20]: %time for n in range(1000000): mojimoji.zen_to_han(s)
    CPU times: user 2.86 s, sys: 0.10 s, total: 2.97 s
    Wall time: 2.88 s

    In [21]: %time for n in range(1000000): unicodedata.normalize('NFKC', s)
    CPU times: user 5.43 s, sys: 0.12 s, total: 5.55 s
    Wall time: 5.44 s

    In [22]: %time for n in range(1000000): zenhan.z2h(s)
    CPU times: user 69.18 s, sys: 0.11 s, total: 69.29 s
    Wall time: 69.48 s

Links
-----
- `mojimoji-rs <https://github.com/europeanplaice/mojimoji-rs>`_: The Rust implementation of mojimoji
- `gomojimoji <https://github.com/rusq/gomojimoji>`_: The Go implementation of mojimoji

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/studio-ousia/mojimoji",
    "name": "mojimoji",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "japanese",
    "author": "Studio Ousia",
    "author_email": "ikuya@ousia.jp",
    "download_url": "https://files.pythonhosted.org/packages/08/fb/ee22357cd7622fb879fac575feaffc54469ed9a0c1d9073355b1ebc62b7f/mojimoji-0.0.13.tar.gz",
    "platform": null,
    "description": "mojimoji\n========\n\n.. image:: https://github.com/studio-ousia/mojimoji/actions/workflows/test.yml/badge.svg\n    :target: https://github.com/studio-ousia/mojimoji/actions/workflows/test.yml\n\n.. image:: https://img.shields.io/pypi/v/mojimoji.svg\n    :target: https://pypi.org/project/mojimoji/\n\n.. image:: https://static.pepy.tech/personalized-badge/mojimoji?period=total&units=international_system&left_color=grey&right_color=orange&left_text=pip%20downloads\n    :target: https://pypi.org/project/mojimoji/\n\n\nA Cython-based fast converter between Japanese hankaku and zenkaku characters.\n\nInstallation\n------------\n\n.. code-block:: bash\n\n    $ pip install mojimoji\n\nExamples\n--------\n\nZenkaku to Hankaku\n^^^^^^^^^^^^^^^^^^\n\n.. code-block:: python\n\n    >>> import mojimoji\n    >>> print(mojimoji.zen_to_han('\u30a2\u30a4\u30a6\uff41\uff42\uff43\uff10\uff11\uff12'))\n    \uff71\uff72\uff73abc012\n    >>> print(mojimoji.zen_to_han('\u30a2\u30a4\u30a6\uff41\uff42\uff43\uff10\uff11\uff12', kana=False))\n    \u30a2\u30a4\u30a6abc012\n    >>> print(mojimoji.zen_to_han('\u30a2\u30a4\u30a6\uff41\uff42\uff43\uff10\uff11\uff12', digit=False))\n    \uff71\uff72\uff73abc\uff10\uff11\uff12\n    >>> print(mojimoji.zen_to_han('\u30a2\u30a4\u30a6\uff41\uff42\uff43\uff10\uff11\uff12', ascii=False))\n    \uff71\uff72\uff73\uff41\uff42\uff43012\n\nHankaku to Zenkaku\n^^^^^^^^^^^^^^^^^^\n\n.. code-block:: python\n\n    >>> import mojimoji\n    >>> print(mojimoji.han_to_zen('\uff71\uff72\uff73abc012'))\n    \u30a2\u30a4\u30a6\uff41\uff42\uff43\uff10\uff11\uff12\n    >>> print(mojimoji.han_to_zen('\uff71\uff72\uff73abc012', kana=False))\n    \uff71\uff72\uff73\uff41\uff42\uff43\uff10\uff11\uff12\n    >>> print(mojimoji.han_to_zen('\uff71\uff72\uff73abc012', digit=False))\n    \u30a2\u30a4\u30a6\uff41\uff42\uff43012\n    >>> print(mojimoji.han_to_zen('\uff71\uff72\uff73abc012', ascii=False))\n    \u30a2\u30a4\u30a6abc\uff10\uff11\uff12\n\n\nBenchmarks\n----------\n\nLibrary versions\n^^^^^^^^^^^^^^^^\n\n- mojimoji: 0.0.1\n- `zenhan <https://pypi.python.org/pypi/zenhan>`_: 0.4\n- `unicodedata <http://docs.python.org/2/library/unicodedata.html>`_: Bundled with Python 2.7.3\n\nResults\n^^^^^^^\n\n.. code-block:: python\n\n    In [19]: s = '\uff21\uff22\uff23\uff24\uff25\uff26\uff27\uff10\uff11\uff12\uff13\uff14\uff15' * 10\n\n    In [20]: %time for n in range(1000000): mojimoji.zen_to_han(s)\n    CPU times: user 2.86 s, sys: 0.10 s, total: 2.97 s\n    Wall time: 2.88 s\n\n    In [21]: %time for n in range(1000000): unicodedata.normalize('NFKC', s)\n    CPU times: user 5.43 s, sys: 0.12 s, total: 5.55 s\n    Wall time: 5.44 s\n\n    In [22]: %time for n in range(1000000): zenhan.z2h(s)\n    CPU times: user 69.18 s, sys: 0.11 s, total: 69.29 s\n    Wall time: 69.48 s\n\nLinks\n-----\n- `mojimoji-rs <https://github.com/europeanplaice/mojimoji-rs>`_: The Rust implementation of mojimoji\n- `gomojimoji <https://github.com/rusq/gomojimoji>`_: The Go implementation of mojimoji\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A fast converter between Japanese hankaku and zenkaku characters",
    "version": "0.0.13",
    "project_urls": {
        "Homepage": "http://github.com/studio-ousia/mojimoji"
    },
    "split_keywords": [
        "japanese"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd4e0d7f019386bc4feb8096b5e8150d2e2dadd377be178d950654830541b5a3",
                "md5": "871f6b025eb282be0442eaf67789f906",
                "sha256": "d4e35fed7eb8ac573eef365d4a614c952179ad4e0e27a8e32d22e6c57a945b8c"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "871f6b025eb282be0442eaf67789f906",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 52307,
            "upload_time": "2024-01-12T10:37:43",
            "upload_time_iso_8601": "2024-01-12T10:37:43.499401Z",
            "url": "https://files.pythonhosted.org/packages/cd/4e/0d7f019386bc4feb8096b5e8150d2e2dadd377be178d950654830541b5a3/mojimoji-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "999c7d28ec5236094b54130bcc34c3ff00185a8ed15e4bf76ac5c601bb2b831d",
                "md5": "ad361afd73cfbbf4090485b765ff10af",
                "sha256": "308a6b43c3c9c5a6d912e1984d02aa58ccabb83c9e57c5edb71389c90187d6d3"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ad361afd73cfbbf4090485b765ff10af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 48501,
            "upload_time": "2024-01-12T10:37:45",
            "upload_time_iso_8601": "2024-01-12T10:37:45.275153Z",
            "url": "https://files.pythonhosted.org/packages/99/9c/7d28ec5236094b54130bcc34c3ff00185a8ed15e4bf76ac5c601bb2b831d/mojimoji-0.0.13-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0cd0169f6a70c1a6fd64bace30b8890752c9c04cb723fbe393d671910f014e7",
                "md5": "a6e0515ca88bb42502e440481d7500ad",
                "sha256": "761c1bcca7146b24c82b72645fbb80dbe6d373792e84f7d71bafa538c0b170af"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a6e0515ca88bb42502e440481d7500ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 188360,
            "upload_time": "2024-01-12T10:37:46",
            "upload_time_iso_8601": "2024-01-12T10:37:46.327450Z",
            "url": "https://files.pythonhosted.org/packages/b0/cd/0169f6a70c1a6fd64bace30b8890752c9c04cb723fbe393d671910f014e7/mojimoji-0.0.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "065944c8ce532482f7c49871157603594050eddf1e53b01041baf2d5d70c0809",
                "md5": "4b2b092827af3997e110da720c9c90aa",
                "sha256": "8feb1b8bf21eae1c35fca72a8c2c05c9a12271d882a02b01608d746d3dbab684"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b2b092827af3997e110da720c9c90aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 192418,
            "upload_time": "2024-01-12T10:37:47",
            "upload_time_iso_8601": "2024-01-12T10:37:47.565194Z",
            "url": "https://files.pythonhosted.org/packages/06/59/44c8ce532482f7c49871157603594050eddf1e53b01041baf2d5d70c0809/mojimoji-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3c01489a243721d26c55b1f679b18338f85103c94464c847d52c0dbeb6acc0a",
                "md5": "ffccfa5e463727b1f679a8a9d0779eec",
                "sha256": "f617ebe1fdceadc2b87497c4d56f3c863155179488feb63f83a62cf95df37b69"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ffccfa5e463727b1f679a8a9d0779eec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 39824,
            "upload_time": "2024-01-12T10:37:49",
            "upload_time_iso_8601": "2024-01-12T10:37:49.386127Z",
            "url": "https://files.pythonhosted.org/packages/a3/c0/1489a243721d26c55b1f679b18338f85103c94464c847d52c0dbeb6acc0a/mojimoji-0.0.13-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f14cdf80f497c30065aa1c0d4bb6a9001042468dc04c8c86ab1dd7e8fe6debf0",
                "md5": "90fcee092def55dbb6a3eea572719e26",
                "sha256": "a5dfcef1fc16360aab65b8b60518a9d19cc7916ffc296ee0907819490686429e"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "90fcee092def55dbb6a3eea572719e26",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 43748,
            "upload_time": "2024-01-12T10:37:50",
            "upload_time_iso_8601": "2024-01-12T10:37:50.331785Z",
            "url": "https://files.pythonhosted.org/packages/f1/4c/df80f497c30065aa1c0d4bb6a9001042468dc04c8c86ab1dd7e8fe6debf0/mojimoji-0.0.13-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "235753640dc93fc65242f65b9c10e2ae6c991298f3a2ae986be5051b45a3718d",
                "md5": "172dcaa6d04d3279c055fcae8d891364",
                "sha256": "c97d7c1861635cd538f44bf70dd27ed24435b0f8fe634ca52c49cb4c4424d6fa"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "172dcaa6d04d3279c055fcae8d891364",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 52496,
            "upload_time": "2024-01-12T10:37:51",
            "upload_time_iso_8601": "2024-01-12T10:37:51.931399Z",
            "url": "https://files.pythonhosted.org/packages/23/57/53640dc93fc65242f65b9c10e2ae6c991298f3a2ae986be5051b45a3718d/mojimoji-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0114699c0279a2b82008967c4a938bb1becd65383e0fe7ac719acec891c8d63",
                "md5": "36bd204eacae9d948713971cc71e103c",
                "sha256": "2402eaf2a5f963735c44e59559fa00ee8eb8dec46c0e3f29bfdb1ee49d7a75df"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "36bd204eacae9d948713971cc71e103c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 48453,
            "upload_time": "2024-01-12T10:37:53",
            "upload_time_iso_8601": "2024-01-12T10:37:53.120398Z",
            "url": "https://files.pythonhosted.org/packages/e0/11/4699c0279a2b82008967c4a938bb1becd65383e0fe7ac719acec891c8d63/mojimoji-0.0.13-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7775ab823cf487ba3f0225da2780975e342f07299d4059ac934a476fe61d4414",
                "md5": "498cd5f1dc56c50c932cecd6f4292f96",
                "sha256": "60a7358d7d413d4ea9c92e3b523ab4e701e30cefc505b2f1409761fc9e7ba730"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "498cd5f1dc56c50c932cecd6f4292f96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 201309,
            "upload_time": "2024-01-12T10:37:54",
            "upload_time_iso_8601": "2024-01-12T10:37:54.203156Z",
            "url": "https://files.pythonhosted.org/packages/77/75/ab823cf487ba3f0225da2780975e342f07299d4059ac934a476fe61d4414/mojimoji-0.0.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7893866d76f25eca48a9b68639d0584e547c0f429a7b140daaaf752a2e5faa0d",
                "md5": "fc62a241a7a0d33eba051b6cec46ef52",
                "sha256": "535f278df0a26280e904cd3688ae610414b176cc373431ac31e378305ee96452"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc62a241a7a0d33eba051b6cec46ef52",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 205684,
            "upload_time": "2024-01-12T10:37:55",
            "upload_time_iso_8601": "2024-01-12T10:37:55.407455Z",
            "url": "https://files.pythonhosted.org/packages/78/93/866d76f25eca48a9b68639d0584e547c0f429a7b140daaaf752a2e5faa0d/mojimoji-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f11cb88596fb5286f98c93c054d881b817655cc22af52185e2242230738704e",
                "md5": "aa66d09cf11dee82ac2b2af8247deb94",
                "sha256": "d27f88051d4fde5b2fdb1a07e3064c950541da6d25e3f1829eedededc015b0c2"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "aa66d09cf11dee82ac2b2af8247deb94",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 39901,
            "upload_time": "2024-01-12T10:37:56",
            "upload_time_iso_8601": "2024-01-12T10:37:56.575358Z",
            "url": "https://files.pythonhosted.org/packages/0f/11/cb88596fb5286f98c93c054d881b817655cc22af52185e2242230738704e/mojimoji-0.0.13-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d1b159b658b1bc9b2e6faf004e086dd81ce758a62cc5e8405065f7e30db0b8a",
                "md5": "6269f423074fe89d4e10bb59a10b0b73",
                "sha256": "ea2f75e93425f0bcfaef68c189845ec9a212d37a4997ffa35353ef7e5c57ca9a"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6269f423074fe89d4e10bb59a10b0b73",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 43942,
            "upload_time": "2024-01-12T10:37:57",
            "upload_time_iso_8601": "2024-01-12T10:37:57.650485Z",
            "url": "https://files.pythonhosted.org/packages/5d/1b/159b658b1bc9b2e6faf004e086dd81ce758a62cc5e8405065f7e30db0b8a/mojimoji-0.0.13-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55514f8fb6d6d96ef623d5014b8f5b006c697d045d2df5696194811246570ac9",
                "md5": "6fd9b95b2c895858444480d99b27dcfb",
                "sha256": "9d8f1618fb9b100bba172f2629df20e6db591ce5912996ac630d215627dd7553"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6fd9b95b2c895858444480d99b27dcfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 49596,
            "upload_time": "2024-01-12T10:37:59",
            "upload_time_iso_8601": "2024-01-12T10:37:59.259380Z",
            "url": "https://files.pythonhosted.org/packages/55/51/4f8fb6d6d96ef623d5014b8f5b006c697d045d2df5696194811246570ac9/mojimoji-0.0.13-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b12b21c4ecf2fb5d162c0f6fde9dc401cc9a730dab4f85373ca25c350c204e7",
                "md5": "fc4caf5a0cf3e5a133c17cf597c9c929",
                "sha256": "ad4a2e1fb2b643ac3166f30be97a95ad1877e4670c6dc656c4ef580681b84c49"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fc4caf5a0cf3e5a133c17cf597c9c929",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 46720,
            "upload_time": "2024-01-12T10:38:00",
            "upload_time_iso_8601": "2024-01-12T10:38:00.440992Z",
            "url": "https://files.pythonhosted.org/packages/5b/12/b21c4ecf2fb5d162c0f6fde9dc401cc9a730dab4f85373ca25c350c204e7/mojimoji-0.0.13-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d85954d806efbead02c87320b96436d2834d7f2f164de3ef4dd7e5f71f92f71",
                "md5": "ac64cbe42611d21bd450c8fa69b2bafe",
                "sha256": "d001f2042073b194bad071925b7ee36d9f320b79c93b4463df87267fee986e86"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ac64cbe42611d21bd450c8fa69b2bafe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 204364,
            "upload_time": "2024-01-12T10:38:02",
            "upload_time_iso_8601": "2024-01-12T10:38:02.149181Z",
            "url": "https://files.pythonhosted.org/packages/0d/85/954d806efbead02c87320b96436d2834d7f2f164de3ef4dd7e5f71f92f71/mojimoji-0.0.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8bcf262abd0bec2316cbfe972ba2a79c0d5836f0f536877fa59347a76065f80",
                "md5": "c196ddd207b905a2ee081b0f479bd0a3",
                "sha256": "3c5fd38d1f4079dc54ac79f93b0e5442c660b297a3868308251ffc37beb1216b"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c196ddd207b905a2ee081b0f479bd0a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 211246,
            "upload_time": "2024-01-12T10:38:03",
            "upload_time_iso_8601": "2024-01-12T10:38:03.296022Z",
            "url": "https://files.pythonhosted.org/packages/b8/bc/f262abd0bec2316cbfe972ba2a79c0d5836f0f536877fa59347a76065f80/mojimoji-0.0.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51a45ec16d4570a4f64d4abf70d21282d4c59e0665fa0badf2793c14263765bc",
                "md5": "fc50daa5704faf6170dac01aa9f8eefd",
                "sha256": "c97ee81e4f7083df13b8ef690366e67afd8170c8f7c259161bae6ed12d41fe5b"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "fc50daa5704faf6170dac01aa9f8eefd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 38641,
            "upload_time": "2024-01-12T10:38:05",
            "upload_time_iso_8601": "2024-01-12T10:38:05.306294Z",
            "url": "https://files.pythonhosted.org/packages/51/a4/5ec16d4570a4f64d4abf70d21282d4c59e0665fa0badf2793c14263765bc/mojimoji-0.0.13-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0daaa46aa90ddeab3a00b8c36d5f3d64b630a0a1fa8ad6468f10365ffbb80a2",
                "md5": "f26a3333fd7d79391a791aa2355dad6c",
                "sha256": "6e442d6dcfb2fc1a08eea86da80ebe71ad63fbc4217fa4faede7023c0b51d055"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f26a3333fd7d79391a791aa2355dad6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 42280,
            "upload_time": "2024-01-12T10:38:07",
            "upload_time_iso_8601": "2024-01-12T10:38:07.045294Z",
            "url": "https://files.pythonhosted.org/packages/e0/da/aa46aa90ddeab3a00b8c36d5f3d64b630a0a1fa8ad6468f10365ffbb80a2/mojimoji-0.0.13-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4835ef234bea0e8ba5585f69062877ff1ff230a814e89bc538f9b69213a2194",
                "md5": "390e3aad81c3e0c04135bf119cfc3369",
                "sha256": "b44d0a99b69bca583e497cf217d2573f9a01ca49d9dc23116bffb196efdb192f"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "390e3aad81c3e0c04135bf119cfc3369",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 51391,
            "upload_time": "2024-01-12T10:38:07",
            "upload_time_iso_8601": "2024-01-12T10:38:07.979732Z",
            "url": "https://files.pythonhosted.org/packages/a4/83/5ef234bea0e8ba5585f69062877ff1ff230a814e89bc538f9b69213a2194/mojimoji-0.0.13-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5944fcbc5869f0891ac452fecabc279a8549d8425c05e12ca6bd6d633d40f996",
                "md5": "01e382c8405e85a06a675ead86ee7f8f",
                "sha256": "1087035b4b0d5f2be0db74ccdb285e0bcf977a8c24e47ee93cd084570d073648"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01e382c8405e85a06a675ead86ee7f8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 177477,
            "upload_time": "2024-01-12T10:38:08",
            "upload_time_iso_8601": "2024-01-12T10:38:08.993323Z",
            "url": "https://files.pythonhosted.org/packages/59/44/fcbc5869f0891ac452fecabc279a8549d8425c05e12ca6bd6d633d40f996/mojimoji-0.0.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a88e80821dc2cd0eb9811d96cc280c37b971d1ef03f1937e987d97be218344b",
                "md5": "65c7d18fa51b200a5b88e1d3c0da4e30",
                "sha256": "da069e1c48f54de4c4c372c74cf8c7f27487449d1547337aaedc21b26538b5e7"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65c7d18fa51b200a5b88e1d3c0da4e30",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 181030,
            "upload_time": "2024-01-12T10:38:10",
            "upload_time_iso_8601": "2024-01-12T10:38:10.733650Z",
            "url": "https://files.pythonhosted.org/packages/0a/88/e80821dc2cd0eb9811d96cc280c37b971d1ef03f1937e987d97be218344b/mojimoji-0.0.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60a930a9352e6b901df9ca7918c7a0e130780cbc13a38f793b3ad0fc8e7a2978",
                "md5": "874664dc2c9dac6007c094f951c898c6",
                "sha256": "522eff5b0fd3ea2cdbeae27581a684174ed843dd7b9076791bf344a746a1ed8f"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "874664dc2c9dac6007c094f951c898c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 39232,
            "upload_time": "2024-01-12T10:38:12",
            "upload_time_iso_8601": "2024-01-12T10:38:12.507779Z",
            "url": "https://files.pythonhosted.org/packages/60/a9/30a9352e6b901df9ca7918c7a0e130780cbc13a38f793b3ad0fc8e7a2978/mojimoji-0.0.13-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2b4dafcee5f2cc70ed5d318d089a2ff9de99d8b72d8bb1619c4fdb99f66c299",
                "md5": "bd7c879cc0deb026972eae9d5c478c02",
                "sha256": "99472af3849bd795970ecc9102f1007350cb8aef0ff21ba0511c121fe94c3ffe"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bd7c879cc0deb026972eae9d5c478c02",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 42763,
            "upload_time": "2024-01-12T10:38:13",
            "upload_time_iso_8601": "2024-01-12T10:38:13.578914Z",
            "url": "https://files.pythonhosted.org/packages/b2/b4/dafcee5f2cc70ed5d318d089a2ff9de99d8b72d8bb1619c4fdb99f66c299/mojimoji-0.0.13-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82b1733618acb7534447636b9596d4e959aa604f43b0e75ab92bef92475b3fac",
                "md5": "1a565586c6e3938088005b30680c336a",
                "sha256": "01130d705445c4b41dcb6177b82ef6ae54ae13dc8d7ad9bf1a673acf0db8059c"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a565586c6e3938088005b30680c336a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 52386,
            "upload_time": "2024-01-12T10:38:15",
            "upload_time_iso_8601": "2024-01-12T10:38:15.365313Z",
            "url": "https://files.pythonhosted.org/packages/82/b1/733618acb7534447636b9596d4e959aa604f43b0e75ab92bef92475b3fac/mojimoji-0.0.13-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95e24dc53efbdd63ff4a1f607f9040127e0cfcf52438d5a8b06a118d518a93db",
                "md5": "f13c196c66d7bbecfbf8baa2672d8e64",
                "sha256": "18422803dc00703ebf4969a6d6957bd9099913295f0578c9e29ee25d4988ed7f"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f13c196c66d7bbecfbf8baa2672d8e64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 48528,
            "upload_time": "2024-01-12T10:38:16",
            "upload_time_iso_8601": "2024-01-12T10:38:16.966893Z",
            "url": "https://files.pythonhosted.org/packages/95/e2/4dc53efbdd63ff4a1f607f9040127e0cfcf52438d5a8b06a118d518a93db/mojimoji-0.0.13-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7761482f8fec8ddbdb3b482f43b664b5545656a1f877f881ac5100fce5544352",
                "md5": "7648d8a49adc3ad5fa2b0f362fbf07d0",
                "sha256": "7fc8a9caeea0147eee642a50c004fc64f0c1410736423f74802cf9950ae14b43"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7648d8a49adc3ad5fa2b0f362fbf07d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 188014,
            "upload_time": "2024-01-12T10:38:17",
            "upload_time_iso_8601": "2024-01-12T10:38:17.930792Z",
            "url": "https://files.pythonhosted.org/packages/77/61/482f8fec8ddbdb3b482f43b664b5545656a1f877f881ac5100fce5544352/mojimoji-0.0.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6b8b9c4f691fcd2f477fc62ad4d68df6fe873b233810ca504a5de4dcfcdcfa1",
                "md5": "11a91239b609b04a7b6b91c9d4a89e22",
                "sha256": "cc0f872b573218bfac9532ccb2f52f6279e8aa337654bbb28e90f0051d3ceb0b"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11a91239b609b04a7b6b91c9d4a89e22",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 191795,
            "upload_time": "2024-01-12T10:38:19",
            "upload_time_iso_8601": "2024-01-12T10:38:19.049523Z",
            "url": "https://files.pythonhosted.org/packages/b6/b8/b9c4f691fcd2f477fc62ad4d68df6fe873b233810ca504a5de4dcfcdcfa1/mojimoji-0.0.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45998a9fab29bebc23ca84bce47ea0779d784cd84adedd31a6cccb447cd5fcf6",
                "md5": "c1dd76fd3f1940eba77687b703780d69",
                "sha256": "98ea6f420f1298eb6a36b759551b22d133fe882da407f3eccf8c2cc5d302d05f"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "c1dd76fd3f1940eba77687b703780d69",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 39869,
            "upload_time": "2024-01-12T10:38:20",
            "upload_time_iso_8601": "2024-01-12T10:38:20.818825Z",
            "url": "https://files.pythonhosted.org/packages/45/99/8a9fab29bebc23ca84bce47ea0779d784cd84adedd31a6cccb447cd5fcf6/mojimoji-0.0.13-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da1a09adfae8a559ed8ba2d2b9b52121957ef537ab08a66129035f0d81d6e2c8",
                "md5": "dee09463313c26a07f2021ca0b1b1bc4",
                "sha256": "ab1aee2ef6a170b26e431733767361dfc12983847f2be23f6dc2311de7b98df0"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dee09463313c26a07f2021ca0b1b1bc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 43777,
            "upload_time": "2024-01-12T10:38:22",
            "upload_time_iso_8601": "2024-01-12T10:38:22.344017Z",
            "url": "https://files.pythonhosted.org/packages/da/1a/09adfae8a559ed8ba2d2b9b52121957ef537ab08a66129035f0d81d6e2c8/mojimoji-0.0.13-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcadeaba82c4b77adbb95f96bf5957df8e46c12e1237fcc65e67bf3f6243351e",
                "md5": "848c6b10958127fd4bc8bcf1243c7cce",
                "sha256": "918f415c42cabde6128faba93be92482a4fb1f40d0d800727e04716aef40c94e"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "848c6b10958127fd4bc8bcf1243c7cce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 52301,
            "upload_time": "2024-01-12T10:38:23",
            "upload_time_iso_8601": "2024-01-12T10:38:23.387459Z",
            "url": "https://files.pythonhosted.org/packages/fc/ad/eaba82c4b77adbb95f96bf5957df8e46c12e1237fcc65e67bf3f6243351e/mojimoji-0.0.13-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "021e5d5adca209cc077a2a41eed354ab3087875825da4eefd307439bd00505c0",
                "md5": "92a698b9daac01bfbc57340e9b8b5e82",
                "sha256": "a27b8cec5e05db2a7acc475a7ab70b840cf2087bcb2d4a276b89a3f9d20b0887"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "92a698b9daac01bfbc57340e9b8b5e82",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 48502,
            "upload_time": "2024-01-12T10:38:24",
            "upload_time_iso_8601": "2024-01-12T10:38:24.435384Z",
            "url": "https://files.pythonhosted.org/packages/02/1e/5d5adca209cc077a2a41eed354ab3087875825da4eefd307439bd00505c0/mojimoji-0.0.13-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1befd1ca877b926e4e6dc5402d6891ef09806e00bf2d5a0193753afd7c8b4593",
                "md5": "192ef65f8a56b72aba8b240091f97b6f",
                "sha256": "853d87ce8fbef597bc3a1f23a9f95f6a4267f697e28fc85c665598c190b4b71c"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "192ef65f8a56b72aba8b240091f97b6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 188122,
            "upload_time": "2024-01-12T10:38:25",
            "upload_time_iso_8601": "2024-01-12T10:38:25.451541Z",
            "url": "https://files.pythonhosted.org/packages/1b/ef/d1ca877b926e4e6dc5402d6891ef09806e00bf2d5a0193753afd7c8b4593/mojimoji-0.0.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b24fd43b976214108f0953aadbb0ed7ae221b2eb782cf1b3b456f179414c0576",
                "md5": "bc6ca1b1e3a1b5ebfeb70c67d291bf61",
                "sha256": "9f2284489d1b8330bb785eb844c1a6a6a2346c95bc3f52088084c71b4a1fb234"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc6ca1b1e3a1b5ebfeb70c67d291bf61",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 192135,
            "upload_time": "2024-01-12T10:38:27",
            "upload_time_iso_8601": "2024-01-12T10:38:27.331203Z",
            "url": "https://files.pythonhosted.org/packages/b2/4f/d43b976214108f0953aadbb0ed7ae221b2eb782cf1b3b456f179414c0576/mojimoji-0.0.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d28658ae5f8dee8aaeebe6fdd60fa2e3e5437d855d4b390de5b975c2a7735ca",
                "md5": "ee3bc5cd658b8fe6512fabdd80bd507b",
                "sha256": "507c73837b19c17918de5d2afccdaaed95cf00d1e9e38eac93ab39c8fc0930f8"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ee3bc5cd658b8fe6512fabdd80bd507b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 39822,
            "upload_time": "2024-01-12T10:38:28",
            "upload_time_iso_8601": "2024-01-12T10:38:28.534193Z",
            "url": "https://files.pythonhosted.org/packages/0d/28/658ae5f8dee8aaeebe6fdd60fa2e3e5437d855d4b390de5b975c2a7735ca/mojimoji-0.0.13-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af5dc1469375abc2b693393420e505160b31fba2dcb3bf60d857ed226f39a201",
                "md5": "73396051e55a706a87af99aaf7727bc2",
                "sha256": "6b627a62c18655adb36b9b2a420b7f43a0d2f39ebe2aa01418968d6dc71bb104"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "73396051e55a706a87af99aaf7727bc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 43745,
            "upload_time": "2024-01-12T10:38:29",
            "upload_time_iso_8601": "2024-01-12T10:38:29.540758Z",
            "url": "https://files.pythonhosted.org/packages/af/5d/c1469375abc2b693393420e505160b31fba2dcb3bf60d857ed226f39a201/mojimoji-0.0.13-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08fbee22357cd7622fb879fac575feaffc54469ed9a0c1d9073355b1ebc62b7f",
                "md5": "2dd6ddceeb8366d2ab5dc02a97ec33ed",
                "sha256": "0e6d2fba22cc8bf132a5bdf3a964296d9287a618d09681a12868f0fd518e4230"
            },
            "downloads": -1,
            "filename": "mojimoji-0.0.13.tar.gz",
            "has_sig": false,
            "md5_digest": "2dd6ddceeb8366d2ab5dc02a97ec33ed",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 5010,
            "upload_time": "2024-01-12T10:38:30",
            "upload_time_iso_8601": "2024-01-12T10:38:30.532467Z",
            "url": "https://files.pythonhosted.org/packages/08/fb/ee22357cd7622fb879fac575feaffc54469ed9a0c1d9073355b1ebc62b7f/mojimoji-0.0.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-12 10:38:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "studio-ousia",
    "github_project": "mojimoji",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "mojimoji"
}
        
Elapsed time: 0.16982s