m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

245 lines
9.7 KiB

6 months ago
  1. Metadata-Version: 2.1
  2. Name: idna
  3. Version: 3.8
  4. Summary: Internationalized Domain Names in Applications (IDNA)
  5. Author-email: Kim Davies <kim+pypi@gumleaf.org>
  6. Requires-Python: >=3.6
  7. Description-Content-Type: text/x-rst
  8. Classifier: Development Status :: 5 - Production/Stable
  9. Classifier: Intended Audience :: Developers
  10. Classifier: Intended Audience :: System Administrators
  11. Classifier: License :: OSI Approved :: BSD License
  12. Classifier: Operating System :: OS Independent
  13. Classifier: Programming Language :: Python
  14. Classifier: Programming Language :: Python :: 3
  15. Classifier: Programming Language :: Python :: 3 :: Only
  16. Classifier: Programming Language :: Python :: 3.6
  17. Classifier: Programming Language :: Python :: 3.7
  18. Classifier: Programming Language :: Python :: 3.8
  19. Classifier: Programming Language :: Python :: 3.9
  20. Classifier: Programming Language :: Python :: 3.10
  21. Classifier: Programming Language :: Python :: 3.11
  22. Classifier: Programming Language :: Python :: 3.12
  23. Classifier: Programming Language :: Python :: 3.13
  24. Classifier: Programming Language :: Python :: Implementation :: CPython
  25. Classifier: Programming Language :: Python :: Implementation :: PyPy
  26. Classifier: Topic :: Internet :: Name Service (DNS)
  27. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  28. Classifier: Topic :: Utilities
  29. Project-URL: Changelog, https://github.com/kjd/idna/blob/master/HISTORY.rst
  30. Project-URL: Issue tracker, https://github.com/kjd/idna/issues
  31. Project-URL: Source, https://github.com/kjd/idna
  32. Internationalized Domain Names in Applications (IDNA)
  33. =====================================================
  34. Support for the Internationalized Domain Names in
  35. Applications (IDNA) protocol as specified in `RFC 5891
  36. <https://tools.ietf.org/html/rfc5891>`_. This is the latest version of
  37. the protocol and is sometimes referred to as “IDNA 2008”.
  38. This library also provides support for Unicode Technical
  39. Standard 46, `Unicode IDNA Compatibility Processing
  40. <https://unicode.org/reports/tr46/>`_.
  41. This acts as a suitable replacement for the “encodings.idna”
  42. module that comes with the Python standard library, but which
  43. only supports the older superseded IDNA specification (`RFC 3490
  44. <https://tools.ietf.org/html/rfc3490>`_).
  45. Basic functions are simply executed:
  46. .. code-block:: pycon
  47. >>> import idna
  48. >>> idna.encode('ドメイン.テスト')
  49. b'xn--eckwd4c7c.xn--zckzah'
  50. >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah'))
  51. ドメイン.テスト
  52. Installation
  53. ------------
  54. This package is available for installation from PyPI:
  55. .. code-block:: bash
  56. $ python3 -m pip install idna
  57. Usage
  58. -----
  59. For typical usage, the ``encode`` and ``decode`` functions will take a
  60. domain name argument and perform a conversion to A-labels or U-labels
  61. respectively.
  62. .. code-block:: pycon
  63. >>> import idna
  64. >>> idna.encode('ドメイン.テスト')
  65. b'xn--eckwd4c7c.xn--zckzah'
  66. >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah'))
  67. ドメイン.テスト
  68. You may use the codec encoding and decoding methods using the
  69. ``idna.codec`` module:
  70. .. code-block:: pycon
  71. >>> import idna.codec
  72. >>> print('домен.испытание'.encode('idna2008'))
  73. b'xn--d1acufc.xn--80akhbyknj4f'
  74. >>> print(b'xn--d1acufc.xn--80akhbyknj4f'.decode('idna2008'))
  75. домен.испытание
  76. Conversions can be applied at a per-label basis using the ``ulabel`` or
  77. ``alabel`` functions if necessary:
  78. .. code-block:: pycon
  79. >>> idna.alabel('测试')
  80. b'xn--0zwm56d'
  81. Compatibility Mapping (UTS #46)
  82. +++++++++++++++++++++++++++++++
  83. As described in `RFC 5895 <https://tools.ietf.org/html/rfc5895>`_, the
  84. IDNA specification does not normalize input from different potential
  85. ways a user may input a domain name. This functionality, known as
  86. a “mapping”, is considered by the specification to be a local
  87. user-interface issue distinct from IDNA conversion functionality.
  88. This library provides one such mapping that was developed by the
  89. Unicode Consortium. Known as `Unicode IDNA Compatibility Processing
  90. <https://unicode.org/reports/tr46/>`_, it provides for both a regular
  91. mapping for typical applications, as well as a transitional mapping to
  92. help migrate from older IDNA 2003 applications. Strings are
  93. preprocessed according to Section 4.4 “Preprocessing for IDNA2008”
  94. prior to the IDNA operations.
  95. For example, “Königsgäßchen” is not a permissible label as *LATIN
  96. CAPITAL LETTER K* is not allowed (nor are capital letters in general).
  97. UTS 46 will convert this into lower case prior to applying the IDNA
  98. conversion.
  99. .. code-block:: pycon
  100. >>> import idna
  101. >>> idna.encode('Königsgäßchen')
  102. ...
  103. idna.core.InvalidCodepoint: Codepoint U+004B at position 1 of 'Königsgäßchen' not allowed
  104. >>> idna.encode('Königsgäßchen', uts46=True)
  105. b'xn--knigsgchen-b4a3dun'
  106. >>> print(idna.decode('xn--knigsgchen-b4a3dun'))
  107. königsgäßchen
  108. Transitional processing provides conversions to help transition from
  109. the older 2003 standard to the current standard. For example, in the
  110. original IDNA specification, the *LATIN SMALL LETTER SHARP S* (ß) was
  111. converted into two *LATIN SMALL LETTER S* (ss), whereas in the current
  112. IDNA specification this conversion is not performed.
  113. .. code-block:: pycon
  114. >>> idna.encode('Königsgäßchen', uts46=True, transitional=True)
  115. 'xn--knigsgsschen-lcb0w'
  116. Implementers should use transitional processing with caution, only in
  117. rare cases where conversion from legacy labels to current labels must be
  118. performed (i.e. IDNA implementations that pre-date 2008). For typical
  119. applications that just need to convert labels, transitional processing
  120. is unlikely to be beneficial and could produce unexpected incompatible
  121. results.
  122. ``encodings.idna`` Compatibility
  123. ++++++++++++++++++++++++++++++++
  124. Function calls from the Python built-in ``encodings.idna`` module are
  125. mapped to their IDNA 2008 equivalents using the ``idna.compat`` module.
  126. Simply substitute the ``import`` clause in your code to refer to the new
  127. module name.
  128. Exceptions
  129. ----------
  130. All errors raised during the conversion following the specification
  131. should raise an exception derived from the ``idna.IDNAError`` base
  132. class.
  133. More specific exceptions that may be generated as ``idna.IDNABidiError``
  134. when the error reflects an illegal combination of left-to-right and
  135. right-to-left characters in a label; ``idna.InvalidCodepoint`` when
  136. a specific codepoint is an illegal character in an IDN label (i.e.
  137. INVALID); and ``idna.InvalidCodepointContext`` when the codepoint is
  138. illegal based on its positional context (i.e. it is CONTEXTO or CONTEXTJ
  139. but the contextual requirements are not satisfied.)
  140. Building and Diagnostics
  141. ------------------------
  142. The IDNA and UTS 46 functionality relies upon pre-calculated lookup
  143. tables for performance. These tables are derived from computing against
  144. eligibility criteria in the respective standards. These tables are
  145. computed using the command-line script ``tools/idna-data``.
  146. This tool will fetch relevant codepoint data from the Unicode repository
  147. and perform the required calculations to identify eligibility. There are
  148. three main modes:
  149. * ``idna-data make-libdata``. Generates ``idnadata.py`` and
  150. ``uts46data.py``, the pre-calculated lookup tables used for IDNA and
  151. UTS 46 conversions. Implementers who wish to track this library against
  152. a different Unicode version may use this tool to manually generate a
  153. different version of the ``idnadata.py`` and ``uts46data.py`` files.
  154. * ``idna-data make-table``. Generate a table of the IDNA disposition
  155. (e.g. PVALID, CONTEXTJ, CONTEXTO) in the format found in Appendix
  156. B.1 of RFC 5892 and the pre-computed tables published by `IANA
  157. <https://www.iana.org/>`_.
  158. * ``idna-data U+0061``. Prints debugging output on the various
  159. properties associated with an individual Unicode codepoint (in this
  160. case, U+0061), that are used to assess the IDNA and UTS 46 status of a
  161. codepoint. This is helpful in debugging or analysis.
  162. The tool accepts a number of arguments, described using ``idna-data
  163. -h``. Most notably, the ``--version`` argument allows the specification
  164. of the version of Unicode to be used in computing the table data. For
  165. example, ``idna-data --version 9.0.0 make-libdata`` will generate
  166. library data against Unicode 9.0.0.
  167. Additional Notes
  168. ----------------
  169. * **Packages**. The latest tagged release version is published in the
  170. `Python Package Index <https://pypi.org/project/idna/>`_.
  171. * **Version support**. This library supports Python 3.6 and higher.
  172. As this library serves as a low-level toolkit for a variety of
  173. applications, many of which strive for broad compatibility with older
  174. Python versions, there is no rush to remove older interpreter support.
  175. Removing support for older versions should be well justified in that the
  176. maintenance burden has become too high.
  177. * **Python 2**. Python 2 is supported by version 2.x of this library.
  178. Use "idna<3" in your requirements file if you need this library for
  179. a Python 2 application. Be advised that these versions are no longer
  180. actively developed.
  181. * **Testing**. The library has a test suite based on each rule of the
  182. IDNA specification, as well as tests that are provided as part of the
  183. Unicode Technical Standard 46, `Unicode IDNA Compatibility Processing
  184. <https://unicode.org/reports/tr46/>`_.
  185. * **Emoji**. It is an occasional request to support emoji domains in
  186. this library. Encoding of symbols like emoji is expressly prohibited by
  187. the technical standard IDNA 2008 and emoji domains are broadly phased
  188. out across the domain industry due to associated security risks. For
  189. now, applications that need to support these non-compliant labels
  190. may wish to consider trying the encode/decode operation in this library
  191. first, and then falling back to using `encodings.idna`. See `the Github
  192. project <https://github.com/kjd/idna/issues/18>`_ for more discussion.