Каждый раз, когда кто-то работает со сложным XML и нуждается в более простых структурах, таких как сплющенные кадры данных с двумерной строкой за столбцом, следует учитывать XSLT , язык специального назначения, предназначенный для преобразования файлов XML в другие XML, HTML, и, как показано ниже, даже текстовые файлы! Python lxml
может запускать сценарии XSLT 1.0.
Ниже XSLT создает текстовый файл с разделителями канала с именованными столбцами, который затем импортируется в Pandas. Задача этого XML, однако, заключается в том, что связанные узлы среди ID -идентифицированных Item не являются его дочерними элементами, а являются его родными братьями. В результате необходимо было выполнить специальную настройку для мюнхенской группировки , стратегии, заимствованной у XSLT Grouping Sibling @ Tomalak's answer .
XSLT (сохранить как файл .xsl, специальный файл .xml для импорта)
Из-за необходимости отображения пустых ячеек скрипт исчерпывает все возможные столбцы и, следовательно, его длину.
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsl:output method="text" indent="yes" omit-xml-declaration="yes"/>
<xsl:key name="item_key" match="Item" use="generate-id(preceding-sibling::Item[count(ID) > 0][1])"/>
<xsl:template match ="/Items">
<!-- COLUMN HEADERS -->
<xsl:text>ID|Type|Name|PubDate|Desc|Notes|Image|LinkA|LinkB|TableA|TableB|TableC|TableD|TableE|TableF|TableG|TableH|TableI|TableJ
</xsl:text>
<xsl:apply-templates select="Item[count(ID) > 0 and not(contains(ID, 'Content'))]"/>
</xsl:template>
<xsl:template match ="Item">
<!-- INDICATORS TO REPEAT ACROSS RELATED ROWS -->
<xsl:variable name="ID" select="normalize-space(ID)"/>
<xsl:variable name="Type" select="normalize-space(Type)"/>
<xsl:variable name="Name" select="normalize-space(Name)"/>
<xsl:variable name="PubDate" select="normalize-space(PubDate)"/>
<xsl:variable name="Desc" select="normalize-space(Desc)"/>
<xsl:variable name="Notes" select="normalize-space(Notes)"/>
<xsl:variable name="Image" select="normalize-space(Image)"/>
<xsl:variable name="LinkA" select="normalize-space(LinkA)"/>
<xsl:variable name="LinkB" select="normalize-space(LinkB)"/>
<!-- ITEM ID NODES -->
<xsl:value-of select="$ID"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Type"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Name"/><xsl:text>|</xsl:text>
<xsl:value-of select="$PubDate"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Desc"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Notes"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Image"/><xsl:text>|</xsl:text>
<xsl:value-of select="$LinkA"/><xsl:text>|</xsl:text>
<xsl:value-of select="$LinkB"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableA)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableB)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableC)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableD)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableE)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableF)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableG)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableH)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableI)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableJ)"/><xsl:text>|</xsl:text>
<xsl:text>
</xsl:text> <!-- LINE BREAK -->
<!-- ALL RELATED NODES TO ITEM ID -->
<xsl:for-each select="key('item_key', generate-id())[position() != last()]" >
<xsl:value-of select="$ID"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Type"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Name"/><xsl:text>|</xsl:text>
<xsl:value-of select="$PubDate"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Desc"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Notes"/><xsl:text>|</xsl:text>
<xsl:value-of select="$Image"/><xsl:text>|</xsl:text>
<xsl:value-of select="$LinkA"/><xsl:text>|</xsl:text>
<xsl:value-of select="$LinkB"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableA)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableB)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableC)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableD)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableE)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableF)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableG)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableH)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableI)"/><xsl:text>|</xsl:text>
<xsl:value-of select="normalize-space(TableJ)"/><xsl:text>|</xsl:text>
<xsl:text>
</xsl:text> <!-- LINE BREAK -->
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
Python (работает XSLT, сохраняет CSV, импортирует в Pandas)
import pandas as pd
from lxml import etree
url = "http://h17007.www1.hpe.com/data/xml/eos/eos.xml?a=0.9317168944148095.xml"
# LOAD XML AND XSL
xml = etree.parse(url)
xsl = etree.parse("XSLT_Script.xsl")
# TRANSFORM SOURCE
transformer = etree.XSLT(xsl)
result = transformer(xml)
# SAVE PIPE-DELIMITED FILE
with open("Output.txt", 'wb') as f:
f.write(result)
# IMPORT PIPE-DELIMITED FILE
hp_df = pd.read_table("Output.txt", sep="|", index_col=False)
# ALTERNATIVE: IMPORT DIRECTLY (BYPASS .TXT SAVE)
from io import StringIO
hp_df = pd.read_table(StringIO(str(result)), sep="|", index_col=False)
Вывод (до импорта Pandas)
ID|Type|Name|PubDate|Desc|Notes|Image|LinkA|LinkB|TableA|TableB|TableC|TableD|TableE|TableF|TableG|TableH|TableI|TableJ
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||||||||||||
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||JD298A|HP 1 Port Gig-T 3100 SI Module|N/A||||||||
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||JD299A|HP 1 Port Gig-LX SC 3100 SI Module|N/A||||||||
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||JD300A|HP 1 Port Gig-SX SC 3100 SI Module|N/A||||||||
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||JD301A|HP 1-Port 10/100Base-T POE 3100 SI Module|N/A||||||||
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||JD308A|HP A3100-16 SI Switch with 2 Module Slots|JD305A|HP A3100-16 SI Switch|||||||
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||JD309A|HP A3100-24 SI Switch with 2 Slots|JD306A|HP A3100-24 SI Switch|||||||
1|1|Select HP A3100 series switches|June 1, 2011|The HP A3100 SI series switches indicated below have served H3C and HP Customers with Fast Ethernet for many years. Due to market factors, we are announcing the end of sale of the devices effective Jul 1, 2011.||a3100-24.png|HP-A3100SI-ES-Announcement.pdf||JF444A|3100 series module|N/A||||||||
2|2|HP V10ag Wireless Access Point (NA only)|July 26, 2010|The HP V10ag Wireless Access Point has provided secure, reliable 802.11a and 802.11b/g wireless connectivity for small business networks since 2007. Due to the availability of the next generation 802.11n technology and the introduction of the HP V-M200 802.11n Access Point, HP networking is announcing the End of Sale of the HP V10ag Wireless Access Point (J9140A). For specific product rollover details see the announcement.||WAP10ag-1.png|10agAnnouncement-AM-only.pdf|http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/12883-12883-1137927-3836040-4172284-3637595.html?jumpid=reg_R1002_USEN|||||||||||
3|2|HP ProCurve Mobility Access Point Series - M110|September 2, 2009|<b>MAC Address Schema Change:</b> We are finalizing the integration of Colubris (previous acquisition) products by transitioning MAC Address assignments to HP ProCurve MAC address assignments. HP will be doing a Product Roll to support this requirement. <b>HP ProCurve Statement on New DFS EU Standards</b> As of July 1st 2010, all wireless devices sold in the EU countries and any country that participates in the EU free market, must meet stringent Dynamic Frequency Selection (DFS) requirements for radar detection and avoidance. HP will be doing a Product Roll to support this requirement. For specific product roll details see our MAC Address A-to-B Roll and DFS Disablement Announcement.||M110_100x100.png|A-to-BRollforVariousHPProCurveAccessPoints.pdf|http://h20195.www2.hp.com/v2/GetDocument.aspx?docname=4AA0-8273ENW&cc=en&lc=en|||||||||||
Чтобы отфильтровать этот основной фрейм данных, используйте методы pandas:
# SPECIFIC PRODUCT WITH [...]
filtered_df = hp_df[hp_df['Name'] == 'HPE 1410 Fast Ethernet Switches']
# SPECIFIC PRODUCT WITH .query()
filtered_df = hp_df.query("Name == 'HPE FlexNetwork 5940 Switch Series'")
# PASS A LIST WITH .isin()
filtered_df = hp_df[hp_df['Name'].isin(['HPE FlexNetwork 5120 SI Switch Series',
'HPE 1410 Fast Ethernet Switches',
'HPE OfficeConnect 1910 Switch Series'])]