{ "info": { "author": "Andi Vajda", "author_email": "vajda@pyicu.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved", "Operating System :: OS Independent", "Programming Language :: C++", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Internationalization", "Topic :: Software Development :: Localization" ], "description": "# README file for PyICU\n\n## Welcome\n\nWelcome to PyICU, a Python extension wrapping the ICU C++ libraries.\n\nICU stands for \"International Components for Unicode\".\nThese are the i18n libraries of the Unicode Consortium.\nThey implement much of the Unicode Standard,\nmany of its companion Unicode Technical Standards,\nand much of Unicode CLDR.\n\nThe PyICU source code is hosted at https://gitlab.pyicu.org/main/pyicu.\n\nThe ICU homepage is http://site.icu-project.org/\n\nSee also the CLDR homepage at http://cldr.unicode.org/\n\n## Installing PyICU\n\nPyICU is a python extension implemented in C++ that wraps the C/C++ ICU library.\nIt is known to also work as a [PyPy](https://www.pypy.org/) extension.\nUnless ``pkg-config`` and the ICU libraries and headers are already installed,\nbuilding PyICU from the sources on [PyPI](https://pypi.org/project/PyICU/)\ninvolves more than just a ``pip`` call. Many operating systems distribute\npre-built binary packages of ICU and PyICU, see below.\n\n - Mac OS X\n - Ensure ICU is installed and can be found by `pkg-config` (as `icu-config` was [deprecated](http://userguide.icu-project.org/howtouseicu#TOC-C-Makefiles) as of ICU 63.1), either by following [ICU build instructions](https://unicode-org.github.io/icu/userguide/icu4c/build.html), or by using Homebrew:\n ```sh\n # install libicu (keg-only)\n brew install pkg-config icu4c\n\n # let setup.py discover keg-only icu4c via pkg-config\n export PATH=\"/usr/local/opt/icu4c/bin:/usr/local/opt/icu4c/sbin:$PATH\"\n export PKG_CONFIG_PATH=\"$PKG_CONFIG_PATH:/usr/local/opt/icu4c/lib/pkgconfig\"\n ```\n - Install PyICU **with the same C++ compiler as your Python distribution**\n ([more info](https://gitlab.pyicu.org/main/pyicu/merge_requests/140#issuecomment-782283491)):\n ```sh\n # EITHER - when using a gcc-built CPython (e.g. from Homebrew)\n export CC=\"$(which gcc)\" CXX=\"$(which g++)\"\n # OR - when using system CPython or another clang-based CPython, ensure system clang is used (for proper libstdc++ https://gitlab.pyicu.org/main/pyicu/issues/5#issuecomment-291631507):\n unset CC CXX\n\n # avoid wheels from previous runs or PyPI\n pip install --no-binary=:pyicu: pyicu\n ```\n\n - ICU and PyICU binaries are both available via [Macports](https://www.macports.org/) as well. The same limitations about mixing binaries may apply.\n ```sh\n # see versions available\n /opt/local/bin/port search pyicu\n sudo /opt/local/bin/port install ...\n ```\n\n - Debian\n ```sh\n apt-get update\n \n # EITHER - from apt directly https://packages.debian.org/source/stable/pyicu\n apt-get install python3-icu\n # OR - from source\n apt-get install pkg-config libicu-dev\n pip install --no-binary=:pyicu: pyicu\n ```\n\n - Ubuntu: similar to Debian, there is a pyicu\n [package](https://packages.ubuntu.com/source/xenial/python/pyicu)\n available via ``apt``.\n\n - Alpine Linux: there is a pyicu\n [package](https://pkgs.alpinelinux.org/package/edge/community/x86/py3-icu)\n available via ``apk``.\n\n - NetBSD: there is a pyicu [package](https://pkgsrc.se/textproc/py-ICU)\n available via ``pkg_add``.\n\n - OpenBSD: there is a pyicu [package](https://openports.se/textproc/py-ICU)\n available via ``pkg_add``.\n\n - Other operating systems: see below.\n\n## Building PyICU\n\nBefore building PyICU the ICU libraries must be built and installed. Refer\nto each system's [instructions](https://unicode-org.github.io/icu/userguide/icu4c/build.html) for more information.\n\nPyICU is built with setuptools:\n\n - verify that ``pkg-config`` is available (the ``icu-config`` program is\n [deprecated](http://userguide.icu-project.org/howtouseicu#TOC-C-Makefiles)\n as of ICU 63.1)\n ```sh\n pkg-config --cflags --libs icu-i18n\n ```\n If this command returns an error or doesn't return the paths expected\n then ensure that the ``INCLUDES``, ``LFLAGS``, ``CFLAGS`` and ``LIBRARIES``\n dictionaries in ``setup.py`` contain correct values for your platform.\n Starting with ICU 60, ``-std=c++11`` must appear in your CFLAGS or be the\n default for your C++ compiler.\n\n - build and install pyicu\n ```sh\n python setup.py build\n sudo python setup.py install\n ```\n\n## Running PyICU\n\n - Mac OS X\n Make sure that ``DYLD_LIBRARY_PATH`` contains paths to the directory(ies)\n containing the ICU libs.\n\n - Linux & Solaris\n Make sure that ``LD_LIBRARY_PATH`` contains paths to the directory(ies)\n containing the ICU libs or that you added the corresponding ``-rpath``\n argument to ``LFLAGS``.\n\n - Windows\n Make sure that ``PATH`` contains paths to the directory(ies)\n containing the ICU DLLs.\n\n\n## What's available\n\nSee the [CHANGES](https://gitlab.pyicu.org/main/pyicu/blob/main/CHANGES) file\nfor an up to date log of changes and additions.\n\n\n## API Documentation\n\nThere is no API documentation for PyICU. The API for ICU is documented at\nhttps://unicode-org.github.io/icu-docs/apidoc/released/icu4c/ and the\nfollowing patterns can be used to translate from the C++ APIs to the\ncorresponding Python APIs.\n\n### strings\n\nThe ICU string type, [UnicodeString](https://unicode-org.github.io/icu-docs/apidoc/dev/icu4c/classicu_1_1UnicodeString.html), is a type pointing at a mutable array of [UChar](https://unicode-org.github.io/icu-docs/apidoc/dev/icu4c/umachine_8h.html#a6bb9fad572d65b305324ef288165e2ac) Unicode 16-bit wide characters and is described [here](https://unicode-org.github.io/icu-docs/apidoc/dev/icu4c/classicu_1_1UnicodeString.html#details). The Python 3 [str](https://docs.python.org/3/library/stdtypes.html#str) type is described [here](https://docs.python.org/3/library/stdtypes.html#index-26) and [here](https://docs.python.org/3/howto/unicode.html). The Python 2 [unicode](https://docs.python.org/2.7/reference/datamodel.html#index-23) type is described [here](https://docs.python.org/2.7/library/stdtypes.html#sequence-types-str-unicode-list-tuple-bytearray-buffer-xrange).\n\nBecause of their differences, ICU's and Python's string objects are not merged\ninto the same type when crossing the C++ boundary but converted.\n\nICU APIs taking ``UnicodeString`` arguments have been overloaded to also\naccept arguments that are Python 3 ``str`` or Python 2 ``unicode`` objects.\nPython 2 ``str`` objects are auto-decoded into ICU strings using the ``utf-8``\nencoding.\n\nTo convert a Python 3 ``bytes`` or a Python 2 ``str`` object encoded in an\nencoding other than ``utf-8`` to an ICU ``UnicodeString`` use the\n``UnicodeString(str, encodingName)`` constructor.\n\nICU's C++ APIs accept and return ``UnicodeString`` arguments in several\nways: by value, by pointer or by reference.\nWhen an ICU C++ API is documented to accept a ``UnicodeString`` reference\nparameter, it is safe to assume that there are several corresponding\nPyICU python APIs making it accessible in simpler ways:\n\nFor example, the ``'UnicodeString &Locale::getDisplayName(UnicodeString &)'``\nAPI, documented\n[here](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1Locale.html#a61def321a9cfd9904b59e3f1897f835e),\ncan be invoked from Python in several ways:\n\n1. The ICU way\n\n >>> from icu import UnicodeString, Locale\n >>> locale = Locale('pt_BR')\n >>> string = UnicodeString()\n >>> name = locale.getDisplayName(string)\n >>> name\n \n >>> name is string\n True <-- string arg was returned, modified in place\n\n2. The Python way\n\n >>> from icu import Locale\n >>> locale = Locale('pt_BR')\n >>> name = locale.getDisplayName()\n >>> name\n 'Portuguese (Brazil)'\n\n A ``UnicodeString`` object was allocated and converted to a Python\n ``str`` object.\n\nA UnicodeString can be converted to a Python unicode string with Python 3's\n``str()`` or Python 2's ``unicode()`` constructor. The usual ``len()``,\ncomparison, `[]`` and ``[:]`` operators are all available, with the additional\ntwists that slicing is not read-only and that ``+=`` is also available since a\nUnicodeString is mutable. For example:\n\n >>> name = locale.getDisplayName()\n 'Portuguese (Brazil)'\n >>> name = UnicodeString(name)\n >>> name\n \n >>> str(name)\n 'Portuguese (Brazil)'\n >>> len(name)\n 19\n >>> str(name)\n 'Portuguese (Brazil)'\n >>> name[3]\n 't'\n >>> name[12:18]\n \n >>> name[12:18] = 'the country of Brasil'\n >>> name\n \n >>> name += ' oh joy'\n >>> name\n \n\n### error reporting\n\nThe C++ ICU library does not use C++ exceptions to report errors. ICU\nC++ APIs return errors via a ``UErrorCode`` reference argument. All such\nAPIs are wrapped by Python APIs that omit this argument and throw an\n``ICUError`` Python exception instead. The same is true for ICU APIs\ntaking both a ``ParseError`` and a ``UErrorCode``, they are both to be\nomitted.\n\nFor example, the ``'UnicodeString &DateFormat::format(const Formattable &, UnicodeString &, FieldPosition &, UErrorCode &)'`` API, documented [here](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1DateFormat.html#aae63209f1202550c91e2beed5691b062) is invoked from Python with:\n\n >>> from icu import DateFormat, Formattable\n >>> df = DateFormat.createInstance()\n >>> df\n \n >>> f = Formattable(940284258.0, Formattable.kIsDate)\n >>> df.format(f)\n '10/18/99 3:04 PM'\n\nOf course, the simpler ``'UnicodeString &DateFormat::format(UDate, UnicodeString &)'`` documented [here](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1DateFormat.html#a5940ccf5676d3fa043d8255c55b7ddd1) can be used too:\n\n >>> from icu import DateFormat\n >>> df = DateFormat.createInstance()\n >>> df\n \n >>> df.format(940284258.0)\n '10/18/99 3:04 PM'\n\n### dates\n\nICU uses a double floating point type called ``UDate`` that represents the\nnumber of milliseconds elapsed since 1970-jan-01 UTC for dates.\n\nIn Python, the value returned by the ``time`` module's ``time()``\nfunction is the number of seconds since 1970-jan-01 UTC. Because of this\ndifference, floating point values are multiplied by 1000 when passed to\nAPIs taking ``UDate`` and divided by 1000 when returned as ``UDate``.\n\nPython's ``datetime`` objects, with or without timezone information, can\nalso be used with APIs taking ``UDate`` arguments. The ``datetime``\nobjects get converted to ``UDate`` when crossing into the C++ layer.\n\n### arrays\n\nMany ICU API take array arguments. A list of elements of the array\nelement types is to be passed from Python.\n\n### StringEnumeration\n\nAn ICU ``StringEnumeration`` has three ``next`` methods: ``next()`` which\nreturns ``str`` objects, ``unext()`` which returns ``str`` objects in Python 3\nor ``unicode`` objects in Python 2 and ``snext()`` which returns\n``UnicodeString`` objects. Any of these methods can be used as an iterator,\nusing the Python built-in ``iter`` function.\n\nFor example, let ``e`` be a ``StringEnumeration`` instance:\n\n```python\ne = TimeZone.createEnumeration()\n[s for s in e] # a list of 'str' objects\n[s for s in iter(e.unext, '')] # a list of 'str' or 'unicode' objects\n[s for s in iter(e.snext, '')] # a list of 'UnicodeString' objects\n```\n\n### timezones\n\nThe ICU ``TimeZone`` type may be wrapped with an ``ICUtzinfo`` type for\nusage with Python's ``datetime`` type. For example:\n\n```python\nfrom datetime import datetime\ntz = ICUtzinfo(TimeZone.createTimeZone('US/Mountain'))\ndatetime.now(tz)\n```\n\nor, even simpler:\n\n```python\ntz = ICUtzinfo.getInstance('Pacific/Fiji')\ndatetime.now(tz)\n```\n\nTo get the default time zone use:\n\n```python\ndefaultTZ = ICUtzinfo.getDefault()\n```\n\nTo get the time zone's id, use the ``tzid`` attribute or coerce the time\nzone to a string:\n\n```python\nICUtzinfo.getInstance('Pacific/Fiji').tzid -> 'Pacific/Fiji'\nstr(ICUtzinfo.getInstance('Pacific/Fiji')) -> 'Pacific/Fiji'\n```\n\n## Further Reading\n\nThe [unit tests](https://gitlab.pyicu.org/main/pyicu/-/tree/main/test) have\nmore examples of actual PyICU usage.\n\nThere are also a few\n[samples](https://gitlab.pyicu.org/main/pyicu/-/tree/main/samples) ported from\nICU C/C++.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.pyicu.org/main/pyicu", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "PyICU-binary", "package_url": "https://pypi.org/project/PyICU-binary/", "platform": "", "project_url": "https://pypi.org/project/PyICU-binary/", "project_urls": { "Homepage": "https://gitlab.pyicu.org/main/pyicu" }, "release_url": "https://pypi.org/project/PyICU-binary/2.7.4/", "requires_dist": null, "requires_python": "", "summary": "Python extension wrapping the ICU C++ API", "version": "2.7.4", "yanked": false, "yanked_reason": null }, "last_serial": 11443347, "releases": { "2.0.3": [ { "comment_text": "", "digests": { "md5": "672d973b7a66de5ab26469e1832c088f", "sha256": "6922061b78f81b145aafa8dc22f6c78f500c38ff79edfc3f4472c0a4647cbadc" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp27-cp27m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "672d973b7a66de5ab26469e1832c088f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 12697091, "upload_time": "2019-05-03T22:47:52", "upload_time_iso_8601": "2019-05-03T22:47:52.072592Z", "url": "https://files.pythonhosted.org/packages/88/0a/10d656dbed053362f13983301ff5ed9e1a737e65170aed5eb7b5311df5d5/PyICU_binary-2.0.3-cp27-cp27m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9468e8e41dd4dea25a48480045dcd7c", "sha256": "4312b164396f71dbc2398722f29789133d8ce97aa7c63af86122a685035f123e" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b9468e8e41dd4dea25a48480045dcd7c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13871091, "upload_time": "2018-05-17T19:38:38", "upload_time_iso_8601": "2018-05-17T19:38:38.333732Z", "url": "https://files.pythonhosted.org/packages/64/aa/0a13f57d6d4012a1221c05ca1088ac34cd01f0d57c218f899367e828cf02/PyICU_binary-2.0.3-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f823cf7200f8e9ec62d06d662530c9c1", "sha256": "4a3a75c9b7077debcb47e0feb22cdb4510e82af5649f7b4312d045b08ddd5291" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f823cf7200f8e9ec62d06d662530c9c1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13896927, "upload_time": "2018-05-17T19:38:53", "upload_time_iso_8601": "2018-05-17T19:38:53.247693Z", "url": "https://files.pythonhosted.org/packages/e3/a3/b5c65144cf83d47b2454220e71691e4d32b1602e2a0ce19ff11eef8bd89d/PyICU_binary-2.0.3-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dde034b870d6d9119ddbc58460fb752", "sha256": "b1c231381ae5aeb082585ff28f3ccf04d3a6d5b9df921352de06adde571733df" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8dde034b870d6d9119ddbc58460fb752", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13871416, "upload_time": "2018-05-17T19:39:07", "upload_time_iso_8601": "2018-05-17T19:39:07.361012Z", "url": "https://files.pythonhosted.org/packages/9c/0e/1e036c5644cad62792f955665f52fc3313b5d15765d869941925c8a205f8/PyICU_binary-2.0.3-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1edbf1901ca2c39955ba2e80e3628624", "sha256": "b446be9772dd034d407424ff55308e490fcd8abcaded10dfa173630b4037046a" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1edbf1901ca2c39955ba2e80e3628624", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13898406, "upload_time": "2018-05-17T19:39:22", "upload_time_iso_8601": "2018-05-17T19:39:22.046507Z", "url": "https://files.pythonhosted.org/packages/9b/a7/9e16f62589caef272f2d123ae2e1458f7699ea13b8717cb6fb2938b9ee4b/PyICU_binary-2.0.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2de11a2dc71d88ad5f46eae3108686d4", "sha256": "10818b3745186e1e2d7f4c05143821742fc5df7430cef13ecce7575bef735037" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp34-cp34m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "2de11a2dc71d88ad5f46eae3108686d4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 12698753, "upload_time": "2019-05-03T22:48:04", "upload_time_iso_8601": "2019-05-03T22:48:04.422297Z", "url": "https://files.pythonhosted.org/packages/28/15/b9e4c6d9358bcfee1e6fa202f4ae0846fa8e3f02bd9262aa0f27e116c07e/PyICU_binary-2.0.3-cp34-cp34m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d71f08ede707fa8245faa1220e96763d", "sha256": "b1f4b4e29868771725ea424d515696b43dbd525674514e1ecc91a4eb9633a8f2" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d71f08ede707fa8245faa1220e96763d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13882650, "upload_time": "2018-05-17T19:39:35", "upload_time_iso_8601": "2018-05-17T19:39:35.993946Z", "url": "https://files.pythonhosted.org/packages/ab/d7/84fdaa72e4fb1d734a654dfe0013bed8e31fd5cb38a1ef5c84b58529d27d/PyICU_binary-2.0.3-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32fbfb2d2e62375af4c1fc91fc48bbbf", "sha256": "5ad6476cc8e66904c788f03c00f49382eae8e17ea939fe547114d1f2689b1208" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "32fbfb2d2e62375af4c1fc91fc48bbbf", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13908494, "upload_time": "2018-05-17T19:39:51", "upload_time_iso_8601": "2018-05-17T19:39:51.429073Z", "url": "https://files.pythonhosted.org/packages/ba/fa/348efcf47f3831b12f321bc83aaed55dbaf73e2af60c7726f2ed89d29654/PyICU_binary-2.0.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84ba674b6995342146139804a1ddcb97", "sha256": "130a61e615eb694a41748b9c858f5eb8010fd41d1b4806c744f2c36d7c7b1602" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp35-cp35m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "84ba674b6995342146139804a1ddcb97", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 12698817, "upload_time": "2019-05-03T22:48:16", "upload_time_iso_8601": "2019-05-03T22:48:16.676583Z", "url": "https://files.pythonhosted.org/packages/3d/d6/45f3f6db8535f97f1565efb80d3f94952c3b6381e43d31548f5969d7fc2a/PyICU_binary-2.0.3-cp35-cp35m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa98066fd5b07d814137ef88b0520ddb", "sha256": "da672d2a6e1a43daf4ad740f8c04d03ab3ff94628226c22a2ab2fee8eaa75373" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fa98066fd5b07d814137ef88b0520ddb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13883933, "upload_time": "2018-05-17T19:40:05", "upload_time_iso_8601": "2018-05-17T19:40:05.429434Z", "url": "https://files.pythonhosted.org/packages/73/3b/b1eb0b29e41271dba7361d19854919b2848f1d82fe4e6efc1701ff4608d8/PyICU_binary-2.0.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8543a41b8f7946c8b41dfe84f6a7774e", "sha256": "a0f7fa60cb5fff7f98087e82f12708bcba0f4674c880b0215fc8927d23b286b3" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8543a41b8f7946c8b41dfe84f6a7774e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13910554, "upload_time": "2018-05-17T19:40:19", "upload_time_iso_8601": "2018-05-17T19:40:19.596692Z", "url": "https://files.pythonhosted.org/packages/67/a1/af09a6c38395043823de18f3b372ec4d0509570fb3d26b7694dc6256ab7b/PyICU_binary-2.0.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3abac5a08dd2d2c7117e1d339fa4214", "sha256": "eaa6174dc3afe1dbf34711650e34c44f86db8e60ee72f63e85f37296b2772ec9" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp36-cp36m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "f3abac5a08dd2d2c7117e1d339fa4214", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 12698817, "upload_time": "2019-05-03T22:48:29", "upload_time_iso_8601": "2019-05-03T22:48:29.032100Z", "url": "https://files.pythonhosted.org/packages/5a/b0/e53820b82074c02024727545cd525466afc0c851b92014ece79b44ba8200/PyICU_binary-2.0.3-cp36-cp36m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c965b67ac500433df9e560b031c2e84", "sha256": "3d4aef534d70dc67ee5b7d0e7e401de4ea3c0b4ebe4544f6ecf69a5f644eb98d" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c965b67ac500433df9e560b031c2e84", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13883944, "upload_time": "2018-05-17T19:40:40", "upload_time_iso_8601": "2018-05-17T19:40:40.169206Z", "url": "https://files.pythonhosted.org/packages/8b/a3/f4aec3535c79c6dc26c59aa95cc1cff4f256d3127455c644e8e94fc4d899/PyICU_binary-2.0.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac4fa9d268b69a777fb79ddd6fe23d72", "sha256": "d29351abfaaac00c286c025a6f0c596285eaad4c718ae14bb7a7c350fa892066" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ac4fa9d268b69a777fb79ddd6fe23d72", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13910659, "upload_time": "2018-05-17T19:40:54", "upload_time_iso_8601": "2018-05-17T19:40:54.578972Z", "url": "https://files.pythonhosted.org/packages/b7/4a/1cf482317de545fa2efd886edbfcbca173ae7bcf13ec715a16eb742078f9/PyICU_binary-2.0.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1e1a47bf97733793f075558233ea9b9", "sha256": "cdab4e4f6546d4f67611024770f9e6baa6ab68514dcc3c293f15bb232778f12a" }, "downloads": -1, "filename": "PyICU_binary-2.0.3-cp37-cp37m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "d1e1a47bf97733793f075558233ea9b9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 12698670, "upload_time": "2019-05-03T22:48:41", "upload_time_iso_8601": "2019-05-03T22:48:41.350568Z", "url": "https://files.pythonhosted.org/packages/2a/b9/f759423b7cb72e91423c1db2962aad28f3d5431c24b814d5881f8d576b44/PyICU_binary-2.0.3-cp37-cp37m-macosx_10_13_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "877040ec56cea4f98829c7746c12f82e", "sha256": "32e5edc48b698ab2677915434f5b245f711d81ca77b6aa6d6c345ba3dbc32c59" }, "downloads": -1, "filename": "PyICU-binary-2.0.3.tar.gz", "has_sig": false, "md5_digest": "877040ec56cea4f98829c7746c12f82e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152222, "upload_time": "2018-05-18T00:50:44", "upload_time_iso_8601": "2018-05-18T00:50:44.795018Z", "url": "https://files.pythonhosted.org/packages/a2/86/15e365276e61bed8d72752049daaf57b50622b92dc4d9d221dcdda5d70bb/PyICU-binary-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "01ec06426fd568b1202b0b46cfdc78a1", "sha256": "5fa8fd6238527729cb1e67ee391adadbc18d07f56257997587174ca3fcd718ff" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp27-cp27m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "01ec06426fd568b1202b0b46cfdc78a1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13203055, "upload_time": "2019-10-21T19:53:03", "upload_time_iso_8601": "2019-10-21T19:53:03.408853Z", "url": "https://files.pythonhosted.org/packages/a6/db/f40b77868bc9a47b49aa285c070a5267dc97b33a05dac1ac54492155fbe2/PyICU_binary-2.3.1-cp27-cp27m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db2a2cdf2b1ac4b119b040f8fb13a9b0", "sha256": "463024d18ecde1a4f656bf8f4f9f6833cf5e480bc54a3f11155cecae0eb2514b" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "db2a2cdf2b1ac4b119b040f8fb13a9b0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14562936, "upload_time": "2019-10-21T19:53:18", "upload_time_iso_8601": "2019-10-21T19:53:18.149553Z", "url": "https://files.pythonhosted.org/packages/85/2a/7f35ec0aa15c243a713aa65b00fc07afb200c7aa00f3ee79786529eadef3/PyICU_binary-2.3.1-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f144e24c037f6601b53df3a6259a6b2f", "sha256": "74b1e811456258b05311238461c7c026d544ba036e54e5452e801de6ba963fab" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f144e24c037f6601b53df3a6259a6b2f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14596369, "upload_time": "2019-10-21T19:53:32", "upload_time_iso_8601": "2019-10-21T19:53:32.134142Z", "url": "https://files.pythonhosted.org/packages/c4/cf/313c20d3b6e11932276a12e07beabfddbba7adca17a7d3c0ff2d898627de/PyICU_binary-2.3.1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0226da756c72f8e577937e5c210a0487", "sha256": "d88e6b0c7b8939506d0ab04cadcdc77407f19f5396a003dace2a1d32beb53169" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0226da756c72f8e577937e5c210a0487", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14563345, "upload_time": "2019-10-21T19:53:46", "upload_time_iso_8601": "2019-10-21T19:53:46.439015Z", "url": "https://files.pythonhosted.org/packages/c9/d0/d78bda8de5d10863a619ec66b1cd6657001ee0d5caf2fbe7bdaf920c9a9e/PyICU_binary-2.3.1-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12d32e472b1c250b3da0cbb75059b9ad", "sha256": "2a645a2ce52fb1500d3143cbc662a9cc5186e94a24d55d4260ac246ed54bf8a6" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "12d32e472b1c250b3da0cbb75059b9ad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14597220, "upload_time": "2019-10-21T19:54:01", "upload_time_iso_8601": "2019-10-21T19:54:01.055744Z", "url": "https://files.pythonhosted.org/packages/df/9a/ca75fc862c6c047a8b735e4dcd8c087e468be2cfe50d79fbf2140810d714/PyICU_binary-2.3.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1a5973f60bf8e3396d456c03ac89151", "sha256": "cec07b346e6f7c5a4d97c4bd66fe8e549c82a45d3e9e90ce3509b93a09a86bee" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c1a5973f60bf8e3396d456c03ac89151", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14576558, "upload_time": "2019-10-21T19:54:15", "upload_time_iso_8601": "2019-10-21T19:54:15.834781Z", "url": "https://files.pythonhosted.org/packages/78/d2/e0bdbcc1eabc731c98300e93f9c60b4179eef855bf1088dc0857265a3a08/PyICU_binary-2.3.1-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e1e203b3c6d3a7516b856d2b31288f1", "sha256": "c4727dcf6ce7c9cc210b1fa0cba46e320c61c86af48c3c08004ca6382d203831" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9e1e203b3c6d3a7516b856d2b31288f1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14606346, "upload_time": "2019-10-21T19:54:30", "upload_time_iso_8601": "2019-10-21T19:54:30.243179Z", "url": "https://files.pythonhosted.org/packages/9b/26/1a8d7c1ef197d1d80dddd64e19b2ecca64e1f1fb75d012a36521658d48e6/PyICU_binary-2.3.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d853b7a5cbacc2c3bf2a8aa742903e4", "sha256": "9f0501f3a8a49b27abd3c6900898bdd84aa53ce398ecd145a5f1ad609ecc8e75" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp35-cp35m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "2d853b7a5cbacc2c3bf2a8aa742903e4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13205394, "upload_time": "2019-10-21T19:54:44", "upload_time_iso_8601": "2019-10-21T19:54:44.303249Z", "url": "https://files.pythonhosted.org/packages/de/8a/3990b096124e5daebc17da515b0245b5f819bb105b899929eb084f6e7634/PyICU_binary-2.3.1-cp35-cp35m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab1742a5708111399981cf9b19d1ec9a", "sha256": "e860387620433b35cca6d92126387766ef956abe62c26e3f08b5ad29c6832142" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ab1742a5708111399981cf9b19d1ec9a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14578074, "upload_time": "2019-10-21T19:54:59", "upload_time_iso_8601": "2019-10-21T19:54:59.742701Z", "url": "https://files.pythonhosted.org/packages/f5/c1/6499550190c64f43f1b8a9eaaf2c0e98fd1876d1b42e34278936bf1af042/PyICU_binary-2.3.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d0b4d83acd8877abfb5ebc24635d574", "sha256": "140933607d9a81e97f468d67a93d7183d80a21237d29f3c2c8b9ad30057bb59e" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6d0b4d83acd8877abfb5ebc24635d574", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14607728, "upload_time": "2019-10-21T19:55:14", "upload_time_iso_8601": "2019-10-21T19:55:14.867707Z", "url": "https://files.pythonhosted.org/packages/11/9a/4a50578d013500f0aec80ee1351bfbb2d3b2a95d43c35ccb0ad138c75383/PyICU_binary-2.3.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc2c32cea603cca83f1d38a83bf60c6b", "sha256": "248a941c9af1d0f82ff4bf591e878d2fe34d259eb84a6335ee579807458fc85f" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp36-cp36m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fc2c32cea603cca83f1d38a83bf60c6b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13205398, "upload_time": "2019-10-21T19:55:28", "upload_time_iso_8601": "2019-10-21T19:55:28.160173Z", "url": "https://files.pythonhosted.org/packages/ea/78/f85eeb140807512b29171cec3468baaaf7fc74acbf748fe31423643a0c95/PyICU_binary-2.3.1-cp36-cp36m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b1e074a5adab86e80dfd42bcf68c2c5", "sha256": "a58e09ac05947d7110dec457366c356a1e1118be029a38b4b03e66a22909bb06" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3b1e074a5adab86e80dfd42bcf68c2c5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14578176, "upload_time": "2019-10-21T19:55:42", "upload_time_iso_8601": "2019-10-21T19:55:42.634956Z", "url": "https://files.pythonhosted.org/packages/23/fa/e1496fd5a66cd3572af9518db8348c48395588b1f5145ee1763e4aedb4e3/PyICU_binary-2.3.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b49cdaedddbb26ed078ff5e9a49ffa49", "sha256": "d88d97fd725ebc70173f74f8bbcf488dc162dba48eb52e6a828e61906bce5124" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b49cdaedddbb26ed078ff5e9a49ffa49", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14607621, "upload_time": "2019-10-21T19:55:56", "upload_time_iso_8601": "2019-10-21T19:55:56.743404Z", "url": "https://files.pythonhosted.org/packages/bd/5b/9f9f7a39c24fd3024e83bc5d8061850d45cbcc2e3c6a9a7daf18c329800c/PyICU_binary-2.3.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5fd3e2c80a55dd4432544c85e683297a", "sha256": "d86ea896553cb1de7f1d8dbf6c7b1397fe53c0fab6f72dcf7cba69c200fb5840" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5fd3e2c80a55dd4432544c85e683297a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13205595, "upload_time": "2019-10-21T19:56:12", "upload_time_iso_8601": "2019-10-21T19:56:12.902864Z", "url": "https://files.pythonhosted.org/packages/4c/ae/b03f5e35ab9029c0c63ce58647b4a93fcad03e68ee0ee3567bd5b9ba16c6/PyICU_binary-2.3.1-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "946b2200e748c819a4ba2c88fa72e703", "sha256": "4e6a49340908495969081fc8351c1fb57b68d310b0ba1a49e0d4a5cee529cdab" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "946b2200e748c819a4ba2c88fa72e703", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14578220, "upload_time": "2019-10-21T19:56:27", "upload_time_iso_8601": "2019-10-21T19:56:27.356132Z", "url": "https://files.pythonhosted.org/packages/15/63/e830d2f6f9223ce7aab950af6a97387d287afb86e217bd04f907d2a55c3f/PyICU_binary-2.3.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38ce9e770a4d3d042c99a364895dea79", "sha256": "581fe1c52d4f595a794ab4badb76567215946fd1dfaaf5d22caedb5717359f6b" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "38ce9e770a4d3d042c99a364895dea79", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14607779, "upload_time": "2019-10-21T19:56:42", "upload_time_iso_8601": "2019-10-21T19:56:42.258782Z", "url": "https://files.pythonhosted.org/packages/27/1e/674ebab044606a8c553f046ce86109f47f67ee8be7b2c9f804449f31ed08/PyICU_binary-2.3.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed4cd0f920e844f6bc2ce9ab31000932", "sha256": "7ef7e17ba75eee11847cef79db3109f26c1c094319686508c99410fe16871b3f" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "ed4cd0f920e844f6bc2ce9ab31000932", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 13206431, "upload_time": "2019-10-21T19:56:55", "upload_time_iso_8601": "2019-10-21T19:56:55.426890Z", "url": "https://files.pythonhosted.org/packages/f0/68/744ce361b3e115427b60119d168bd54b81689817fb5248d6bb2bcae0c8de/PyICU_binary-2.3.1-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0c24e063022dfd11cb0301684a53bea", "sha256": "ba91381a93e11b9da67a0f83fc65bf7872aa66363bf659c84fa94e05193913e6" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b0c24e063022dfd11cb0301684a53bea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14617045, "upload_time": "2019-10-21T19:57:09", "upload_time_iso_8601": "2019-10-21T19:57:09.778780Z", "url": "https://files.pythonhosted.org/packages/24/a7/89b84817cb090f8088919f4ec89141f5f77f845dd4df1465d503ba4bfcab/PyICU_binary-2.3.1-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eaa746eae6630772e535616f74ef558", "sha256": "4956e3670f8693c0eba5e60edb1c2fd8f1de2eb48df0d76c3f32d32b6d7654e6" }, "downloads": -1, "filename": "PyICU_binary-2.3.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6eaa746eae6630772e535616f74ef558", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14651959, "upload_time": "2019-10-21T19:57:25", "upload_time_iso_8601": "2019-10-21T19:57:25.266207Z", "url": "https://files.pythonhosted.org/packages/6e/d1/1e6ded17d499e1f3f5763b6e6752ad4f7f83b87c4fe783d099821dcbc572/PyICU_binary-2.3.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a628829f7dd50ce53058ef8cd75ae1b4", "sha256": "8dbfa360adea71ebd257d95443c8b51a3c54e06aff7c6cf807d7c24a1eaa3002" }, "downloads": -1, "filename": "PyICU-binary-2.3.1.tar.gz", "has_sig": false, "md5_digest": "a628829f7dd50ce53058ef8cd75ae1b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162945, "upload_time": "2019-10-21T19:57:28", "upload_time_iso_8601": "2019-10-21T19:57:28.828754Z", "url": "https://files.pythonhosted.org/packages/84/39/e074a383cb9d6590efa7469912e72bd56ebad604de503f3b660da2f3b5f7/PyICU-binary-2.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.4": [ { "comment_text": "", "digests": { "md5": "dc36fe216f33231539275e627c43e96e", "sha256": "f2ca477cac88839a0a9266c1c9aea12c9dd751f4fccebd7ac563212da4a21a49" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp36-cp36m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dc36fe216f33231539275e627c43e96e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13707872, "upload_time": "2021-09-14T00:19:05", "upload_time_iso_8601": "2021-09-14T00:19:05.807689Z", "url": "https://files.pythonhosted.org/packages/6a/f0/a7abef15a1e53a785a5c8d0734869c82303cb31818f21bd11c8b9259b8df/PyICU_binary-2.7.4-cp36-cp36m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfbd40f107d4951d31a9f3b73fa3467f", "sha256": "381b032c9e93e581e82a61e4538993e07db4b12b140344170d5b2b60ff802118" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "dfbd40f107d4951d31a9f3b73fa3467f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15392177, "upload_time": "2021-09-14T00:21:56", "upload_time_iso_8601": "2021-09-14T00:21:56.123285Z", "url": "https://files.pythonhosted.org/packages/93/9d/a0d0f4cd3b180337513da7052fbadecd562c866ec8a1896c28108b589cb1/PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "618bb798cff3da7c90ccf4c5a0d80f7a", "sha256": "9a5a59f871d8e75da3c96f90b98c1df31ebc684806b4db38c0144f1145bc3275" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "618bb798cff3da7c90ccf4c5a0d80f7a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15435506, "upload_time": "2021-09-14T00:24:55", "upload_time_iso_8601": "2021-09-14T00:24:55.706061Z", "url": "https://files.pythonhosted.org/packages/e7/9f/2938907468fa874ffcae0b6736116243e9fd7ff152d9b61b2c7c317e2439/PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8215fb0c12ba6e7a590d0f38ac52b6db", "sha256": "164749f6128b19f26436b1e5ec10595058a78e4ed46150d43bf14028cbffc9d1" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8215fb0c12ba6e7a590d0f38ac52b6db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13707992, "upload_time": "2021-09-14T00:27:23", "upload_time_iso_8601": "2021-09-14T00:27:23.957279Z", "url": "https://files.pythonhosted.org/packages/7b/f6/5eda769519e2ec5fdb92b6a85f4a19323c9d7acd937068e1146b7e591409/PyICU_binary-2.7.4-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9c42b96317bfbf592410932764e3be9", "sha256": "76279a28147b4c8af2d4cdebf05d068576bdb7d06e68638d3482680e4a8b495a" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "a9c42b96317bfbf592410932764e3be9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15405906, "upload_time": "2021-09-14T00:30:51", "upload_time_iso_8601": "2021-09-14T00:30:51.140807Z", "url": "https://files.pythonhosted.org/packages/b6/d1/776b8eaab3a3b17947a200dbd751dde12e6bdf1e5c0d71fc0f6f074ee61c/PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19b93df01bf98dc42bdd5300c16d19c2", "sha256": "35a50c2a505f4890347589a8d902f1fcbdb7b8709e2e6ee8e71b445f3cc03442" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "19b93df01bf98dc42bdd5300c16d19c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15452852, "upload_time": "2021-09-14T00:35:05", "upload_time_iso_8601": "2021-09-14T00:35:05.739232Z", "url": "https://files.pythonhosted.org/packages/5a/66/3dafd0b8f87a12af1c79b74bcffc8f62900ced507dc253ba7909656c34d1/PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a7fd6d14692b8fcc8c76e35cb1ccc1b", "sha256": "4f63682f8430aeda3e6a4b3e0d61192bd5dd93eea234b32a140a95fefcf47bc5" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5a7fd6d14692b8fcc8c76e35cb1ccc1b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 13708824, "upload_time": "2021-09-14T00:39:07", "upload_time_iso_8601": "2021-09-14T00:39:07.474029Z", "url": "https://files.pythonhosted.org/packages/69/39/de73ac09d70cf2c9c1610348ced7f2d542cb0df802083e5974540f84bc3c/PyICU_binary-2.7.4-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a5f28ee9415d50ccbe7baa645ad3973", "sha256": "851e074359ac5a3ab98d6996c9871a2ea829e1a7a07380008e0540dba3a849ca" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "7a5f28ee9415d50ccbe7baa645ad3973", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15444829, "upload_time": "2021-09-14T00:43:34", "upload_time_iso_8601": "2021-09-14T00:43:34.742496Z", "url": "https://files.pythonhosted.org/packages/0b/04/c2ac4f7deaf520e82e7b445f9378188ecbb807a23da5de8744839bd39440/PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fcf9e46cd958ce9b0adeb0f8bd2df8a", "sha256": "bf390b9bcf081edb9de070722a8baae154451262df85a5601ccc12aa9e0ad187" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "9fcf9e46cd958ce9b0adeb0f8bd2df8a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15491208, "upload_time": "2021-09-14T00:48:20", "upload_time_iso_8601": "2021-09-14T00:48:20.794913Z", "url": "https://files.pythonhosted.org/packages/e9/c1/6893670c4bb8e8b031e0bad86e6b49a9b5915848faf62766921a7dc4394c/PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "484ae7a56471d1e6386f29f8e26c1a4a", "sha256": "f077ee0ab99be181e43d021e94a18c15e6a6023de334e7298eb043f7fd367551" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp39-cp39-macosx_11_0_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "484ae7a56471d1e6386f29f8e26c1a4a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 13708786, "upload_time": "2021-09-14T00:52:17", "upload_time_iso_8601": "2021-09-14T00:52:17.732356Z", "url": "https://files.pythonhosted.org/packages/f8/5f/333f97c4be4b5211860c60a672eefb48069e678d29bff7a63e566f449ee3/PyICU_binary-2.7.4-cp39-cp39-macosx_11_0_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "152610709027e0866d7d59ca9114ba46", "sha256": "42262ae5617fd43bfa4b80b1ecb04e7641e0829639a297bacc54c1d7c367833c" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "152610709027e0866d7d59ca9114ba46", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15425120, "upload_time": "2021-09-14T00:57:01", "upload_time_iso_8601": "2021-09-14T00:57:01.841327Z", "url": "https://files.pythonhosted.org/packages/f1/5b/daabf460006d2e0b23f216af26623ebfb19723430f3bbc4c7533060d9614/PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d23633a4a9dd20fd27b97e6feb79f577", "sha256": "f4ec16b9e36fa4c9955a07f9c5c15f30b318917a69dbd2c04267668f8301ec9f" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "d23633a4a9dd20fd27b97e6feb79f577", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15469030, "upload_time": "2021-09-14T01:01:28", "upload_time_iso_8601": "2021-09-14T01:01:28.290671Z", "url": "https://files.pythonhosted.org/packages/be/9d/c2b0c5baf8b85a5a4bb7cb5991bd837b563b83c667ad40e5448cc175d1d6/PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4d66962fef8f270e76332c6f38e0302", "sha256": "2c29f669f9a18a813c9cc6cb970f5b3f6f63d3de2f1fb788f3f287278687bceb" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "a4d66962fef8f270e76332c6f38e0302", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 14479118, "upload_time": "2021-09-14T01:05:34", "upload_time_iso_8601": "2021-09-14T01:05:34.144574Z", "url": "https://files.pythonhosted.org/packages/1c/00/bd2c82128224bd584aaf79f487a58acdb0a151f043bb33ed2ab26123e709/PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb44d9f0df1792a5395fb0ec1675d5b9", "sha256": "592d9ca54203af07fb90c0673e3fac48249cf59ee50402bbe36533de52e4b9e7" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "cb44d9f0df1792a5395fb0ec1675d5b9", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 14349679, "upload_time": "2021-09-14T01:09:32", "upload_time_iso_8601": "2021-09-14T01:09:32.466993Z", "url": "https://files.pythonhosted.org/packages/2f/8f/ed4a84799bc901e0190dbd893f5bf0c496288e6030c19a0cd1429dfe8133/PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37d83fbe4eae7974f63b63f28b0dfa1a", "sha256": "349cf0baf1bfff8ecec73f03dbbbf63889747340848d5f4ef367900b165baf56" }, "downloads": -1, "filename": "PyICU-binary-2.7.4.tar.gz", "has_sig": false, "md5_digest": "37d83fbe4eae7974f63b63f28b0dfa1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 297967, "upload_time": "2021-09-14T01:09:39", "upload_time_iso_8601": "2021-09-14T01:09:39.580635Z", "url": "https://files.pythonhosted.org/packages/bc/84/ce0425f763e993911d5224adb48100600ddbf97141e992bdbfe9337c90e7/PyICU-binary-2.7.4.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "dc36fe216f33231539275e627c43e96e", "sha256": "f2ca477cac88839a0a9266c1c9aea12c9dd751f4fccebd7ac563212da4a21a49" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp36-cp36m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "dc36fe216f33231539275e627c43e96e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13707872, "upload_time": "2021-09-14T00:19:05", "upload_time_iso_8601": "2021-09-14T00:19:05.807689Z", "url": "https://files.pythonhosted.org/packages/6a/f0/a7abef15a1e53a785a5c8d0734869c82303cb31818f21bd11c8b9259b8df/PyICU_binary-2.7.4-cp36-cp36m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfbd40f107d4951d31a9f3b73fa3467f", "sha256": "381b032c9e93e581e82a61e4538993e07db4b12b140344170d5b2b60ff802118" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "dfbd40f107d4951d31a9f3b73fa3467f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15392177, "upload_time": "2021-09-14T00:21:56", "upload_time_iso_8601": "2021-09-14T00:21:56.123285Z", "url": "https://files.pythonhosted.org/packages/93/9d/a0d0f4cd3b180337513da7052fbadecd562c866ec8a1896c28108b589cb1/PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "618bb798cff3da7c90ccf4c5a0d80f7a", "sha256": "9a5a59f871d8e75da3c96f90b98c1df31ebc684806b4db38c0144f1145bc3275" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "618bb798cff3da7c90ccf4c5a0d80f7a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15435506, "upload_time": "2021-09-14T00:24:55", "upload_time_iso_8601": "2021-09-14T00:24:55.706061Z", "url": "https://files.pythonhosted.org/packages/e7/9f/2938907468fa874ffcae0b6736116243e9fd7ff152d9b61b2c7c317e2439/PyICU_binary-2.7.4-cp36-cp36m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8215fb0c12ba6e7a590d0f38ac52b6db", "sha256": "164749f6128b19f26436b1e5ec10595058a78e4ed46150d43bf14028cbffc9d1" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "8215fb0c12ba6e7a590d0f38ac52b6db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13707992, "upload_time": "2021-09-14T00:27:23", "upload_time_iso_8601": "2021-09-14T00:27:23.957279Z", "url": "https://files.pythonhosted.org/packages/7b/f6/5eda769519e2ec5fdb92b6a85f4a19323c9d7acd937068e1146b7e591409/PyICU_binary-2.7.4-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9c42b96317bfbf592410932764e3be9", "sha256": "76279a28147b4c8af2d4cdebf05d068576bdb7d06e68638d3482680e4a8b495a" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "a9c42b96317bfbf592410932764e3be9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15405906, "upload_time": "2021-09-14T00:30:51", "upload_time_iso_8601": "2021-09-14T00:30:51.140807Z", "url": "https://files.pythonhosted.org/packages/b6/d1/776b8eaab3a3b17947a200dbd751dde12e6bdf1e5c0d71fc0f6f074ee61c/PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19b93df01bf98dc42bdd5300c16d19c2", "sha256": "35a50c2a505f4890347589a8d902f1fcbdb7b8709e2e6ee8e71b445f3cc03442" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "19b93df01bf98dc42bdd5300c16d19c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15452852, "upload_time": "2021-09-14T00:35:05", "upload_time_iso_8601": "2021-09-14T00:35:05.739232Z", "url": "https://files.pythonhosted.org/packages/5a/66/3dafd0b8f87a12af1c79b74bcffc8f62900ced507dc253ba7909656c34d1/PyICU_binary-2.7.4-cp37-cp37m-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a7fd6d14692b8fcc8c76e35cb1ccc1b", "sha256": "4f63682f8430aeda3e6a4b3e0d61192bd5dd93eea234b32a140a95fefcf47bc5" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "5a7fd6d14692b8fcc8c76e35cb1ccc1b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 13708824, "upload_time": "2021-09-14T00:39:07", "upload_time_iso_8601": "2021-09-14T00:39:07.474029Z", "url": "https://files.pythonhosted.org/packages/69/39/de73ac09d70cf2c9c1610348ced7f2d542cb0df802083e5974540f84bc3c/PyICU_binary-2.7.4-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a5f28ee9415d50ccbe7baa645ad3973", "sha256": "851e074359ac5a3ab98d6996c9871a2ea829e1a7a07380008e0540dba3a849ca" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "7a5f28ee9415d50ccbe7baa645ad3973", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15444829, "upload_time": "2021-09-14T00:43:34", "upload_time_iso_8601": "2021-09-14T00:43:34.742496Z", "url": "https://files.pythonhosted.org/packages/0b/04/c2ac4f7deaf520e82e7b445f9378188ecbb807a23da5de8744839bd39440/PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fcf9e46cd958ce9b0adeb0f8bd2df8a", "sha256": "bf390b9bcf081edb9de070722a8baae154451262df85a5601ccc12aa9e0ad187" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "9fcf9e46cd958ce9b0adeb0f8bd2df8a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15491208, "upload_time": "2021-09-14T00:48:20", "upload_time_iso_8601": "2021-09-14T00:48:20.794913Z", "url": "https://files.pythonhosted.org/packages/e9/c1/6893670c4bb8e8b031e0bad86e6b49a9b5915848faf62766921a7dc4394c/PyICU_binary-2.7.4-cp38-cp38-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "484ae7a56471d1e6386f29f8e26c1a4a", "sha256": "f077ee0ab99be181e43d021e94a18c15e6a6023de334e7298eb043f7fd367551" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp39-cp39-macosx_11_0_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "484ae7a56471d1e6386f29f8e26c1a4a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 13708786, "upload_time": "2021-09-14T00:52:17", "upload_time_iso_8601": "2021-09-14T00:52:17.732356Z", "url": "https://files.pythonhosted.org/packages/f8/5f/333f97c4be4b5211860c60a672eefb48069e678d29bff7a63e566f449ee3/PyICU_binary-2.7.4-cp39-cp39-macosx_11_0_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "152610709027e0866d7d59ca9114ba46", "sha256": "42262ae5617fd43bfa4b80b1ecb04e7641e0829639a297bacc54c1d7c367833c" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "152610709027e0866d7d59ca9114ba46", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15425120, "upload_time": "2021-09-14T00:57:01", "upload_time_iso_8601": "2021-09-14T00:57:01.841327Z", "url": "https://files.pythonhosted.org/packages/f1/5b/daabf460006d2e0b23f216af26623ebfb19723430f3bbc4c7533060d9614/PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d23633a4a9dd20fd27b97e6feb79f577", "sha256": "f4ec16b9e36fa4c9955a07f9c5c15f30b318917a69dbd2c04267668f8301ec9f" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "d23633a4a9dd20fd27b97e6feb79f577", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15469030, "upload_time": "2021-09-14T01:01:28", "upload_time_iso_8601": "2021-09-14T01:01:28.290671Z", "url": "https://files.pythonhosted.org/packages/be/9d/c2b0c5baf8b85a5a4bb7cb5991bd837b563b83c667ad40e5448cc175d1d6/PyICU_binary-2.7.4-cp39-cp39-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4d66962fef8f270e76332c6f38e0302", "sha256": "2c29f669f9a18a813c9cc6cb970f5b3f6f63d3de2f1fb788f3f287278687bceb" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_i686.whl", "has_sig": false, "md5_digest": "a4d66962fef8f270e76332c6f38e0302", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 14479118, "upload_time": "2021-09-14T01:05:34", "upload_time_iso_8601": "2021-09-14T01:05:34.144574Z", "url": "https://files.pythonhosted.org/packages/1c/00/bd2c82128224bd584aaf79f487a58acdb0a151f043bb33ed2ab26123e709/PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb44d9f0df1792a5395fb0ec1675d5b9", "sha256": "592d9ca54203af07fb90c0673e3fac48249cf59ee50402bbe36533de52e4b9e7" }, "downloads": -1, "filename": "PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", "has_sig": false, "md5_digest": "cb44d9f0df1792a5395fb0ec1675d5b9", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 14349679, "upload_time": "2021-09-14T01:09:32", "upload_time_iso_8601": "2021-09-14T01:09:32.466993Z", "url": "https://files.pythonhosted.org/packages/2f/8f/ed4a84799bc901e0190dbd893f5bf0c496288e6030c19a0cd1429dfe8133/PyICU_binary-2.7.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37d83fbe4eae7974f63b63f28b0dfa1a", "sha256": "349cf0baf1bfff8ecec73f03dbbbf63889747340848d5f4ef367900b165baf56" }, "downloads": -1, "filename": "PyICU-binary-2.7.4.tar.gz", "has_sig": false, "md5_digest": "37d83fbe4eae7974f63b63f28b0dfa1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 297967, "upload_time": "2021-09-14T01:09:39", "upload_time_iso_8601": "2021-09-14T01:09:39.580635Z", "url": "https://files.pythonhosted.org/packages/bc/84/ce0425f763e993911d5224adb48100600ddbf97141e992bdbfe9337c90e7/PyICU-binary-2.7.4.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }