diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-10-30 14:43:19 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-10-30 15:24:20 +0300 |
commit | e589edb669af5acb0efabcfa77cebb60a9b97407 (patch) | |
tree | 7d829c61c48fdf7e3a50cc469c60eea589a03816 /contrib/python/xmltodict/py3/.dist-info | |
parent | 978be2360a794c68ff6177e6c7fd7649b4e8354f (diff) | |
download | ydb-e589edb669af5acb0efabcfa77cebb60a9b97407.tar.gz |
Intermediate changes
commit_hash:8728d5088f12247cf38892337baf887b6df09d87
Diffstat (limited to 'contrib/python/xmltodict/py3/.dist-info')
-rw-r--r-- | contrib/python/xmltodict/py3/.dist-info/METADATA | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/contrib/python/xmltodict/py3/.dist-info/METADATA b/contrib/python/xmltodict/py3/.dist-info/METADATA index e2aaa3e797..da6664f77f 100644 --- a/contrib/python/xmltodict/py3/.dist-info/METADATA +++ b/contrib/python/xmltodict/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: xmltodict -Version: 0.13.0 +Version: 0.14.0 Summary: Makes working with XML feel like you are working with JSON Home-page: https://github.com/martinblech/xmltodict Author: Martin Blech @@ -19,6 +19,9 @@ Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Text Processing :: Markup :: XML Requires-Python: >=3.4 @@ -29,7 +32,7 @@ License-File: LICENSE `xmltodict` is a Python module that makes working with XML feel like you are working with [JSON](http://docs.python.org/library/json.html), as in this ["spec"](http://www.xml.com/pub/a/2006/05/31/converting-between-xml-and-json.html): -[![Build Status](https://travis-ci.com/martinblech/xmltodict.svg?branch=master)](https://travis-ci.com/martinblech/xmltodict) +[![Build Status](https://app.travis-ci.com/martinblech/xmltodict.svg?branch=master)](https://app.travis-ci.com/martinblech/xmltodict) ```python >>> print(json.dumps(xmltodict.parse(""" @@ -231,6 +234,17 @@ You just need to $ pip install xmltodict ``` +### Using conda + +For installing `xmltodict` using Anaconda/Miniconda (*conda*) from the +[conda-forge channel][#xmltodict-conda] all you need to do is: + +[#xmltodict-conda]: https://anaconda.org/conda-forge/xmltodict + +```sh +$ conda install -c conda-forge xmltodict +``` + ### RPM-based distro (Fedora, RHEL, …) There is an [official Fedora package for xmltodict](https://apps.fedoraproject.org/packages/python-xmltodict). @@ -274,5 +288,3 @@ $ zypper in python2-xmltodict # Python3 $ zypper in python3-xmltodict ``` - - |