Return the namespace URI corresponding to `nspfx`. Example: >>> nsuri("p") "http://schemas.openxmlformats.org/presentationml/2006/main"
(nspfx: str)
| 107 | |
| 108 | |
| 109 | def nsuri(nspfx: str): |
| 110 | """Return the namespace URI corresponding to `nspfx`. |
| 111 | |
| 112 | Example: |
| 113 | |
| 114 | >>> nsuri("p") |
| 115 | "http://schemas.openxmlformats.org/presentationml/2006/main" |
| 116 | """ |
| 117 | return _nsmap[nspfx] |
| 118 | |
| 119 | |
| 120 | def qn(namespace_prefixed_tag: str) -> str: |
no outgoing calls
searching dependent graphs…