diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /third_party/python/idna-ssl/idna_ssl.egg-info | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/python/idna-ssl/idna_ssl.egg-info')
6 files changed, 97 insertions, 0 deletions
diff --git a/third_party/python/idna-ssl/idna_ssl.egg-info/PKG-INFO b/third_party/python/idna-ssl/idna_ssl.egg-info/PKG-INFO new file mode 100644 index 0000000000..54ea22146d --- /dev/null +++ b/third_party/python/idna-ssl/idna_ssl.egg-info/PKG-INFO @@ -0,0 +1,81 @@ +Metadata-Version: 1.1 +Name: idna-ssl +Version: 1.1.0 +Summary: Patch ssl.match_hostname for Unicode(idna) domains support +Home-page: https://github.com/aio-libs/idna-ssl +Author: Victor Kovtun +Author-email: hellysmile@gmail.com +License: UNKNOWN +Description: idna-ssl + ======== + + :info: Patch ssl.match_hostname for Unicode(idna) domains support + + .. image:: https://travis-ci.com/aio-libs/idna-ssl.svg?branch=master + :target: https://travis-ci.com/aio-libs/idna-ssl + + .. image:: https://img.shields.io/pypi/v/idna_ssl.svg + :target: https://pypi.python.org/pypi/idna_ssl + + .. image:: https://codecov.io/gh/aio-libs/idna-ssl/branch/master/graph/badge.svg + :target: https://codecov.io/gh/aio-libs/idna-ssl + + Installation + ------------ + + .. code-block:: shell + + pip install idna-ssl + + Usage + ----- + + .. code-block:: python + + from idna_ssl import patch_match_hostname # noqa isort:skip + patch_match_hostname() # noqa isort:skip + + import asyncio + + import aiohttp + + URL = 'https://цфоут.мвд.рф/news/item/8065038/' + + + async def main(): + async with aiohttp.ClientSession() as session: + async with session.get(URL) as response: + print(response) + + + loop = asyncio.get_event_loop() + loop.run_until_complete(main()) + + Motivation + ---------- + + * Here is 100% backward capability + * Related aiohttp `issue <https://github.com/aio-libs/aiohttp/issues/949>`_ + * Related Python `bug <https://bugs.python.org/issue31872>`_ + * Related Python `pull request <https://github.com/python/cpython/pull/3462>`_ + * It is fixed (by January 27 2018) in upcoming Python 3.7, but `IDNA2008 <https://tools.ietf.org/html/rfc5895>`_ is still broken + + Thanks + ------ + + The library was donated by `Ocean S.A. <https://ocean.io/>`_ + + Thanks to the company for contribution. + +Keywords: ssl,Unicode,idna,match_hostname +Platform: UNKNOWN +Classifier: Development Status :: 4 - Beta +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 diff --git a/third_party/python/idna-ssl/idna_ssl.egg-info/SOURCES.txt b/third_party/python/idna-ssl/idna_ssl.egg-info/SOURCES.txt new file mode 100644 index 0000000000..0ed8815e28 --- /dev/null +++ b/third_party/python/idna-ssl/idna_ssl.egg-info/SOURCES.txt @@ -0,0 +1,12 @@ +LICENSE +MANIFEST.in +README.rst +idna_ssl.py +setup.cfg +setup.py +idna_ssl.egg-info/PKG-INFO +idna_ssl.egg-info/SOURCES.txt +idna_ssl.egg-info/dependency_links.txt +idna_ssl.egg-info/not-zip-safe +idna_ssl.egg-info/requires.txt +idna_ssl.egg-info/top_level.txt
\ No newline at end of file diff --git a/third_party/python/idna-ssl/idna_ssl.egg-info/dependency_links.txt b/third_party/python/idna-ssl/idna_ssl.egg-info/dependency_links.txt new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/third_party/python/idna-ssl/idna_ssl.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/third_party/python/idna-ssl/idna_ssl.egg-info/not-zip-safe b/third_party/python/idna-ssl/idna_ssl.egg-info/not-zip-safe new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/third_party/python/idna-ssl/idna_ssl.egg-info/not-zip-safe @@ -0,0 +1 @@ + diff --git a/third_party/python/idna-ssl/idna_ssl.egg-info/requires.txt b/third_party/python/idna-ssl/idna_ssl.egg-info/requires.txt new file mode 100644 index 0000000000..af5772da99 --- /dev/null +++ b/third_party/python/idna-ssl/idna_ssl.egg-info/requires.txt @@ -0,0 +1 @@ +idna>=2.0 diff --git a/third_party/python/idna-ssl/idna_ssl.egg-info/top_level.txt b/third_party/python/idna-ssl/idna_ssl.egg-info/top_level.txt new file mode 100644 index 0000000000..15da36aac1 --- /dev/null +++ b/third_party/python/idna-ssl/idna_ssl.egg-info/top_level.txt @@ -0,0 +1 @@ +idna_ssl |