Tue, 16 Apr 2024 07:35:31 UTC | login

Information for build python-xmltodict-0.9.0-1.el7

ID9954
Package Namepython-xmltodict
Version0.9.0
Release1.el7
Epoch
SummaryMakes working with XML feel like you are working with JSON
Descriptionxmltodict is a Python module that makes working with XML feel like you are working with JSON. It's very fast (Expat-based) and has a streaming mode with a small memory footprint, suitable for big XML dumps like Discogs or Wikipedia. >>> doc = xmltodict.parse(""" ... <mydocument has="an attribute"> ... <and> ... <many>elements</many> ... <many>more elements</many> ... </and> ... <plus a="complex"> ... element as well ... </plus> ... </mydocument> ... """) >>> >>> doc['mydocument']['@has'] u'an attribute' >>> doc['mydocument']['and']['many'] [u'elements', u'more elements'] >>> doc['mydocument']['plus']['@a'] u'complex' >>> doc['mydocument']['plus']['#text'] u'element as well'
Built bylalatendumohanty
State complete
Volume DEFAULT
StartedWed, 02 Mar 2016 20:54:07 UTC
CompletedWed, 02 Mar 2016 20:57:34 UTC
Taskbuild (atomic7-adb-common-el7, python-xmltodict-0.9.0-1.el7.src.rpm)
Tags
atomic7-adb-common-candidate
atomic7-adb-common-release
atomic7-adb-common-testing
infra7-infra-common-candidate
infra7-infra-common-release
infra7-infra-common-testing
infrastructure7-release
infrastructure7-testing
RPMs
src
python-xmltodict-0.9.0-1.el7.src.rpm (info) (download)
noarch
python-xmltodict-0.9.0-1.el7.noarch.rpm (info) (download)
Logs
noarch
root.log
build.log
state.log
Changelog * Thu Oct 02 2014 Fabian Affolter <mail@fabian-affolter.ch> - 0.9.0-1 - Update spec file according guidelines - Update to upstream release 0.9.0 * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 0.4.2-4 - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Fri Jan 04 2013 Ralph Bean <rbean@redhat.com> - 0.4.2-1 - Latest upstream - Included README and LICENSE - Running tests now - https://github.com/martinblech/xmltodict/pull/11 - Added Requires python3 to the python3 subpackage. * Fri Jan 04 2013 Ralph Bean <rbean@redhat.com> - 0.4.1-1 - Initial packaging for Fedora