File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
- :mod:`pandas.io.xml` is a module for reading XML.
2
+ :mod:`` pandas.io.xml` ` is a module for reading XML.
3
3
"""
4
4
5
5
from __future__ import annotations
@@ -66,26 +66,26 @@ class _XMLFrameParser:
66
66
67
67
Parameters
68
68
----------
69
- path_or_buffer : a valid JSON str, path object or file-like object
69
+ path_or_buffer : a valid JSON `` str`` , path object or file-like object
70
70
Any valid string path is acceptable. The string could be a URL. Valid
71
71
URL schemes include http, ftp, s3, and file.
72
72
73
73
xpath : str or regex
74
74
The XPath expression to parse required set of nodes for
75
- migration to `Data Frame `. `etree` supports limited XPath.
75
+ migration to :class:`~pandas.DataFrame `. `etree` supports limited XPath.
76
76
77
77
namespaces : dict
78
- The namespaces defined in XML document (`xmlns:namespace='URI')
78
+ The namespaces defined in XML document (`` xmlns:namespace='URI'`` )
79
79
as dicts with key being namespace and value the URI.
80
80
81
81
elems_only : bool
82
- Parse only the child elements at the specified `xpath`.
82
+ Parse only the child elements at the specified `` xpath` `.
83
83
84
84
attrs_only : bool
85
- Parse only the attributes at the specified `xpath`.
85
+ Parse only the attributes at the specified `` xpath` `.
86
86
87
87
names : list
88
- Column names for Data Frame of parsed XML data.
88
+ Column names for :class:`~pandas.DataFrame` of parsed XML data.
89
89
90
90
dtype : dict
91
91
Data type for data or columns. E.g. {{'a': np.float64,
You can’t perform that action at this time.
0 commit comments