CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
1Metadata-Version: 2.12Name: zipp3Version: 3.19.24Summary: Backport of pathlib-compatible object wrapper for zip files5Author-email: "Jason R. Coombs" <jaraco@jaraco.com>6Project-URL: Homepage, https://github.com/jaraco/zipp7Classifier: Development Status :: 5 - Production/Stable8Classifier: Intended Audience :: Developers9Classifier: License :: OSI Approved :: MIT License10Classifier: Programming Language :: Python :: 311Classifier: Programming Language :: Python :: 3 :: Only12Requires-Python: >=3.813Description-Content-Type: text/x-rst14License-File: LICENSE15Provides-Extra: doc16Requires-Dist: sphinx >=3.5 ; extra == 'doc'17Requires-Dist: jaraco.packaging >=9.3 ; extra == 'doc'18Requires-Dist: rst.linker >=1.9 ; extra == 'doc'19Requires-Dist: furo ; extra == 'doc'20Requires-Dist: sphinx-lint ; extra == 'doc'21Requires-Dist: jaraco.tidelift >=1.4 ; extra == 'doc'22Provides-Extra: test23Requires-Dist: pytest !=8.1.*,>=6 ; extra == 'test'24Requires-Dist: pytest-checkdocs >=2.4 ; extra == 'test'25Requires-Dist: pytest-cov ; extra == 'test'26Requires-Dist: pytest-mypy ; extra == 'test'27Requires-Dist: pytest-enabler >=2.2 ; extra == 'test'28Requires-Dist: pytest-ruff >=0.2.1 ; extra == 'test'29Requires-Dist: jaraco.itertools ; extra == 'test'30Requires-Dist: jaraco.functools ; extra == 'test'31Requires-Dist: more-itertools ; extra == 'test'32Requires-Dist: big-O ; extra == 'test'33Requires-Dist: pytest-ignore-flaky ; extra == 'test'34Requires-Dist: jaraco.test ; extra == 'test'35Requires-Dist: importlib-resources ; (python_version < "3.9") and extra == 'test'36 37.. image:: https://img.shields.io/pypi/v/zipp.svg38   :target: https://pypi.org/project/zipp39 40.. image:: https://img.shields.io/pypi/pyversions/zipp.svg41 42.. image:: https://github.com/jaraco/zipp/actions/workflows/main.yml/badge.svg43   :target: https://github.com/jaraco/zipp/actions?query=workflow%3A%22tests%2244   :alt: tests45 46.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json47    :target: https://github.com/astral-sh/ruff48    :alt: Ruff49 50.. .. image:: https://readthedocs.org/projects/PROJECT_RTD/badge/?version=latest51..    :target: https://PROJECT_RTD.readthedocs.io/en/latest/?badge=latest52 53.. image:: https://img.shields.io/badge/skeleton-2024-informational54   :target: https://blog.jaraco.com/skeleton55 56.. image:: https://tidelift.com/badges/package/pypi/zipp57   :target: https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=readme58 59 60A pathlib-compatible Zipfile object wrapper. Official backport of the standard library61`Path object <https://docs.python.org/3.8/library/zipfile.html#path-objects>`_.62 63 64Compatibility65=============66 67New features are introduced in this third-party library and later merged68into CPython. The following table indicates which versions of this library69were contributed to different versions in the standard library:70 71.. list-table::72   :header-rows: 173 74   * - zipp75     - stdlib76   * - 3.1877     - 3.1378   * - 3.1679     - 3.1280   * - 3.581     - 3.1182   * - 3.283     - 3.1084   * - 3.3 ??85     - 3.986   * - 1.087     - 3.888 89 90Usage91=====92 93Use ``zipp.Path`` in place of ``zipfile.Path`` on any Python.94 95For Enterprise96==============97 98Available as part of the Tidelift Subscription.99 100This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.101 102`Learn more <https://tidelift.com/subscription/pkg/pypi-zipp?utm_source=pypi-zipp&utm_medium=referral&utm_campaign=github>`_.103 
Aluode/PerceptionLabPortable · CoolFace