libxml2mod โ Python bindings for the libxml2 C library, providing XML/HTML parsing, validation, XPath, and tree manipulation.
| Use Case | Command | Description |
|---|---|---|
| ๐ Parse XML file | xmlParseFile(filename) | Parse an XML file into a document tree |
| ๐ Parse XML string | xmlParseDoc(xml_string) | Parse an XML string into a document tree |
| ๐ Parse HTML file | htmlParseFile(filename) | Parse an HTML file into a document tree |
| ๐ Parse HTML string | htmlParseDoc(html_string) | Parse an HTML string into a document tree |
| ๐ XPath query | xmlXPathEval(expr, ctxt) | Evaluate an XPath expression against a context |
| ๐ Create document | xmlNewDoc(version) | Create a new empty XML document |
| ๐งฉ Create node | xmlNewNode(ns, name) | Create a new element node |
| โ Add child | xmlAddChild(parent, child) | Append a child node to a parent |
| ๐ท๏ธ Get attribute | xmlGetProp(node, name) | Get an attribute value from a node |
| โ๏ธ Set attribute | xmlSetProp(node, name, value) | Set an attribute on a node |
| ๐ค Save to file | xmlSaveFile(filename, doc) | Save a document tree to a file |
| ๐งน Free document | xmlFreeDoc(doc) | Free a document and all its nodes |
| ๐ Navigate children | children(node) | Get the first child of a node |
| โก๏ธ Next sibling | next(node) | Get the next sibling node |
| โฌ๏ธ Parent node | parent(node) | Get the parent of a node |
| ๐ Node name | name(node) | Get the name of a node |
| ๐ Node content | xmlNodeGetContent(node) | Get the text content of a node |
| โ Validate DTD | xmlValidateDocument(ctxt, doc) | Validate a document against its DTD |
| ๐ Schema validate | xmlSchemaValidateDoc(ctxt, doc) | Validate a document against an XML Schema |
| ๐ Text reader | xmlNewTextReaderFilename(filename) | Create a streaming text reader for large files |
| ๐ค Escape URI | xmlURIEscape(str) | Escape a string for use in a URI |
| ๐ Load catalog | xmlLoadCatalog(filename) | Load an XML catalog for entity resolution |
| ๐ Copy node | xmlCopyNode(node, extended) | Deep copy a node |
| ๐๏ธ Remove node | xmlUnlinkNode(node) | Unlink a node from its tree |
All functions in the libxml2mod module. Each wraps a corresponding libxml2 C function.
addLocalCatalog(...)children(...)compareNodesEqual(...)doc(...)docbDefaultSAXHandlerInit(...)getObjDesc(...)htmlAutoCloseTag(...)htmlCreateFileParserCtxt(...)htmlCreateMemoryParserCtxt(...)htmlCreatePushParser(...)htmlCtxtReadDoc(...)htmlCtxtReadFd(...)htmlCtxtReadFile(...)htmlCtxtReadMemory(...)htmlCtxtReset(...)htmlCtxtUseOptions(...)htmlDefaultSAXHandlerInit(...)htmlDocContentDumpFormatOutput(...)htmlDocContentDumpOutput(...)htmlDocDump(...)htmlFreeParserCtxt(...)htmlGetMetaEncoding(...)htmlHandleOmittedElem(...)htmlInitAutoClose(...)htmlIsAutoClosed(...)htmlIsBooleanAttr(...)htmlIsScriptAttribute(...)htmlNewDoc(...)htmlNewDocNoDtD(...)htmlNewParserCtxt(...)htmlNodeDumpFile(...)htmlNodeDumpFileFormat(...)htmlNodeDumpFormatOutput(...)htmlNodeDumpOutput(...)htmlParseCharRef(...)htmlParseChunk(...)htmlParseDoc(...)htmlParseDocument(...)htmlParseElement(...)htmlParseFile(...)htmlReadDoc(...)htmlReadFd(...)htmlReadFile(...)htmlReadMemory(...)htmlSAXParseFile(...)htmlSaveFile(...)htmlSaveFileEnc(...)htmlSaveFileFormat(...)htmlSetMetaEncoding(...)inputBufferCreate(...)last(...)name(...)namePop(...)namePush(...)next(...)nodeHash(...)nodePop(...)nodePush(...)outputBufferCreate(...)outputBufferGetPythonFile(...)parent(...)prev(...)properties(...)saveNodeTo(...)serializeNode(...)setEntityLoader(...)type(...)valuePop(...)xmlACatalogAdd(...)xmlACatalogDump(...)xmlACatalogRemove(...)xmlACatalogResolve(...)xmlACatalogResolvePublic(...)xmlACatalogResolveSystem(...)xmlACatalogResolveURI(...)xmlAddChild(...)xmlAddChildList(...)xmlAddDocEntity(...)xmlAddDtdEntity(...)xmlAddEncodingAlias(...)xmlAddNextSibling(...)xmlAddPrevSibling(...)xmlAddSibling(...)xmlBoolToText(...)xmlBuildQName(...)xmlBuildRelativeURI(...)xmlBuildURI(...)xmlByteConsumed(...)xmlC14NDocDumpMemory(...)xmlC14NDocSaveTo(...)xmlCanonicPath(...)xmlCatalogAdd(...)xmlCatalogCleanup(...)xmlCatalogConvert(...)xmlCatalogDump(...)xmlCatalogGetPublic(...)xmlCatalogGetSystem(...)xmlCatalogIsEmpty(...)xmlCatalogRemove(...)xmlCatalogResolve(...)xmlCatalogResolvePublic(...)xmlCatalogResolveSystem(...)xmlCatalogResolveURI(...)xmlCatalogSetDebug(...)xmlCharStrdup(...)xmlCharStrndup(...)xmlCheckFilename(...)xmlCheckLanguageID(...)xmlCheckUTF8(...)xmlCheckVersion(...)xmlCleanupCharEncodingHandlers(...)xmlCleanupEncodingAliases(...)xmlCleanupGlobals(...)xmlCleanupInputCallbacks(...)xmlCleanupOutputCallbacks(...)xmlCleanupPredefinedEntities(...)xmlClearParserCtxt(...)xmlConvertSGMLCatalog(...)xmlCopyChar(...)xmlCopyCharMultiByte(...)xmlCopyDoc(...)xmlCopyDtd(...)xmlCopyError(...)xmlCopyNamespace(...)xmlCopyNamespaceList(...)xmlCopyNode(...)xmlCopyNodeList(...)xmlCopyProp(...)xmlCopyPropList(...)xmlCreateDocParserCtxt(...)xmlCreateEntityParserCtxt(...)xmlCreateFileParserCtxt(...)xmlCreateInputBuffer(...)xmlCreateIntSubset(...)xmlCreateMemoryParserCtxt(...)xmlCreateOutputBuffer(...)xmlCreatePushParser(...)xmlCreateURI(...)xmlCreateURLParserCtxt(...)xmlCtxtReadDoc(...)xmlCtxtReadFd(...)xmlCtxtReadFile(...)xmlCtxtReadMemory(...)xmlCtxtReset(...)xmlCtxtResetPush(...)xmlCtxtUseOptions(...)xmlDebugCheckDocument(...)xmlDebugDumpAttr(...)xmlDebugDumpAttrList(...)xmlDebugDumpDTD(...)xmlDebugDumpDocument(...)xmlDebugDumpDocumentHead(...)xmlDebugDumpEntities(...)xmlDebugDumpNode(...)xmlDebugDumpNodeList(...)xmlDebugDumpOneNode(...)xmlDebugDumpString(...)xmlDebugMemory(...)xmlDecodeEntities(...)xmlDefaultSAXHandlerInit(...)xmlDelEncodingAlias(...)xmlDictCleanup(...)xmlDocCopyNode(...)xmlDocCopyNodeList(...)xmlDocDump(...)xmlDocFormatDump(...)xmlDocGetRootElement(...)xmlDocSetRootElement(...)xmlDumpMemory(...)xmlElemDump(...)xmlEncodeEntities(...)xmlEncodeEntitiesReentrant(...)xmlEncodeSpecialChars(...)xmlErrorGetCode(...)xmlErrorGetDomain(...)xmlErrorGetFile(...)xmlErrorGetLevel(...)xmlErrorGetLine(...)xmlErrorGetMessage(...)xmlFileMatch(...)xmlFirstElementChild(...)xmlFreeCatalog(...)xmlFreeDoc(...)xmlFreeDtd(...)xmlFreeNode(...)xmlFreeNodeList(...)xmlFreeNs(...)xmlFreeNsList(...)xmlFreeParserCtxt(...)xmlFreeParserInputBuffer(...)xmlFreeProp(...)xmlFreePropList(...)xmlFreeTextReader(...)xmlFreeURI(...)xmlFreeValidCtxt(...)xmlGetCompressMode(...)xmlGetDocCompressMode(...)xmlGetDocEntity(...)xmlGetDtdAttrDesc(...)xmlGetDtdElementDesc(...)xmlGetDtdEntity(...)xmlGetDtdQAttrDesc(...)xmlGetDtdQElementDesc(...)xmlGetEncodingAlias(...)xmlGetID(...)xmlGetIntSubset(...)xmlGetLastChild(...)xmlGetLastError(...)xmlGetLineNo(...)xmlGetNoNsProp(...)xmlGetNodePath(...)xmlGetNsProp(...)xmlGetParameterEntity(...)xmlGetPredefinedEntity(...)xmlGetProp(...)xmlHandleEntity(...)xmlHasNsProp(...)xmlHasProp(...)xmlIOFTPMatch(...)xmlIOHTTPMatch(...)xmlInitCharEncodingHandlers(...)xmlInitGlobals(...)xmlInitParser(...)xmlInitParserCtxt(...)xmlInitializeCatalog(...)xmlInitializeDict(...)xmlInitializePredefinedEntities(...)xmlIsBaseChar(...)xmlIsBlank(...)xmlIsBlankNode(...)xmlIsChar(...)xmlIsCombining(...)xmlIsDigit(...)xmlIsExtender(...)xmlIsID(...)xmlIsIdeographic(...)xmlIsLetter(...)xmlIsMixedElement(...)xmlIsPubidChar(...)xmlIsRef(...)xmlIsXHTML(...)xmlKeepBlanksDefault(...)xmlLastElementChild(...)xmlLineNumbersDefault(...)xmlLoadACatalog(...)xmlLoadCatalog(...)xmlLoadCatalogs(...)xmlLoadSGMLSuperCatalog(...)xmlLsCountNode(...)xmlLsOneNode(...)xmlMemoryUsed(...)xmlNamespaceParseNCName(...)xmlNamespaceParseNSDef(...)xmlNanoFTPCleanup(...)xmlNanoFTPInit(...)xmlNanoFTPProxy(...)xmlNanoFTPScanProxy(...)xmlNanoHTTPCleanup(...)xmlNanoHTTPInit(...)xmlNanoHTTPScanProxy(...)xmlNewCDataBlock(...)xmlNewCatalog(...)xmlNewCharRef(...)xmlNewChild(...)xmlNewComment(...)xmlNewDoc(...)xmlNewDocComment(...)xmlNewDocFragment(...)xmlNewDocNode(...)xmlNewDocNodeEatName(...)xmlNewDocPI(...)xmlNewDocProp(...)xmlNewDocRawNode(...)xmlNewDocText(...)xmlNewDocTextLen(...)xmlNewDtd(...)xmlNewEntity(...)xmlNewGlobalNs(...)xmlNewNode(...)xmlNewNodeEatName(...)xmlNewNs(...)xmlNewNsProp(...)xmlNewNsPropEatName(...)xmlNewPI(...)xmlNewParserCtxt(...)xmlNewProp(...)xmlNewReference(...)xmlNewText(...)xmlNewTextChild(...)xmlNewTextLen(...)xmlNewTextReader(...)xmlNewTextReaderFilename(...)xmlNewValidCtxt(...)xmlNextChar(...)xmlNextElementSibling(...)xmlNodeAddContent(...)xmlNodeAddContentLen(...)xmlNodeDumpOutput(...)xmlNodeGetBase(...)xmlNodeGetContent(...)xmlNodeGetLang(...)xmlNodeGetNs(...)xmlNodeGetNsDefs(...)xmlNodeGetSpacePreserve(...)xmlNodeIsText(...)xmlNodeListGetRawString(...)xmlNodeListGetString(...)xmlNodeRemoveNsDef(...)xmlNodeSetBase(...)xmlNodeSetContent(...)xmlNodeSetContentLen(...)xmlNodeSetLang(...)xmlNodeSetName(...)xmlNodeSetSpacePreserve(...)xmlNormalizeURIPath(...)xmlNormalizeWindowsPath(...)xmlOutputBufferClose(...)xmlOutputBufferFlush(...)xmlOutputBufferGetContent(...)xmlOutputBufferWrite(...)xmlOutputBufferWriteString(...)xmlParseAttValue(...)xmlParseAttributeListDecl(...)xmlParseCDSect(...)xmlParseCatalogFile(...)xmlParseCharData(...)xmlParseCharRef(...)xmlParseChunk(...)xmlParseComment(...)xmlParseContent(...)xmlParseDTD(...)xmlParseDoc(...)xmlParseDocTypeDecl(...)xmlParseDocument(...)xmlParseElement(...)xmlParseElementDecl(...)xmlParseEncName(...)xmlParseEncodingDecl(...)xmlParseEndTag(...)xmlParseEntity(...)xmlParseEntityDecl(...)xmlParseEntityRef(...)xmlParseExtParsedEnt(...)xmlParseExternalSubset(...)xmlParseFile(...)xmlParseMarkupDecl(...)xmlParseMemory(...)xmlParseMisc(...)xmlParseName(...)xmlParseNamespace(...)xmlParseNmtoken(...)xmlParseNotationDecl(...)xmlParsePEReference(...)xmlParsePI(...)xmlParsePITarget(...)xmlParsePubidLiteral(...)xmlParseQuotedString(...)xmlParseReference(...)xmlParseSDDecl(...)xmlParseStartTag(...)xmlParseSystemLiteral(...)xmlParseTextDecl(...)xmlParseURI(...)xmlParseURIRaw(...)xmlParseURIReference(...)xmlParseVersionInfo(...)xmlParseVersionNum(...)xmlParseXMLDecl(...)xmlParserCtxtGetErrorHandler(...)xmlParserCtxtSetErrorHandler(...)xmlParserGetDirectory(...)xmlParserGetDoc(...)xmlParserGetIsValid(...)xmlParserGetWellFormed(...)xmlParserHandlePEReference(...)xmlParserHandleReference(...)xmlParserInputBufferGrow(...)xmlParserInputBufferPush(...)xmlParserInputBufferRead(...)xmlParserSetLineNumbers(...)xmlParserSetLoadSubset(...)xmlParserSetPedantic(...)xmlParserSetReplaceEntities(...)xmlParserSetValidate(...)xmlPathToURI(...)xmlPedanticParserDefault(...)xmlPopInput(...)xmlPopOutputCallbacks(...)xmlPreviousElementSibling(...)xmlPrintURI(...)xmlPythonCleanupParser(...)xmlReadDoc(...)xmlReadFd(...)xmlReadFile(...)xmlReadMemory(...)xmlReaderForDoc(...)xmlReaderForFd(...)xmlReaderForFile(...)xmlReaderForMemory(...)xmlReaderNewDoc(...)xmlReaderNewFd(...)xmlReaderNewFile(...)xmlReaderNewMemory(...)xmlReaderNewWalker(...)xmlReaderWalker(...)xmlReconciliateNs(...)xmlRecoverDoc(...)xmlRecoverFile(...)xmlRecoverMemory(...)xmlRegFreeRegexp(...)xmlRegexpCompile(...)xmlRegexpExec(...)xmlRegexpIsDeterminist(...)xmlRegexpPrint(...)xmlRegisterDefaultInputCallbacks(...)xmlRegisterDefaultOutputCallbacks(...)xmlRegisterErrorHandler(...)xmlRegisterHTTPPostCallbacks(...)xmlRegisterInputCallback(...)xmlRegisterXPathFunction(...)xmlRelaxNGCleanupTypes(...)xmlRelaxNGDump(...)xmlRelaxNGDumpTree(...)xmlRelaxNGFree(...)xmlRelaxNGFreeParserCtxt(...)xmlRelaxNGFreeValidCtxt(...)xmlRelaxNGInitTypes(...)xmlRelaxNGNewDocParserCtxt(...)xmlRelaxNGNewMemParserCtxt(...)xmlRelaxNGNewParserCtxt(...)xmlRelaxNGNewValidCtxt(...)xmlRelaxNGParse(...)xmlRelaxNGSetValidErrors(...)xmlRelaxNGValidateDoc(...)xmlRelaxNGValidateFullElement(...)xmlRelaxNGValidatePopElement(...)xmlRelaxNGValidatePushCData(...)xmlRelaxNGValidatePushElement(...)xmlRelaxParserSetFlag(...)xmlRemoveID(...)xmlRemoveProp(...)xmlRemoveRef(...)xmlReplaceNode(...)xmlResetError(...)xmlResetLastError(...)xmlSAXDefaultVersion(...)xmlSAXParseFile(...)xmlSaveFile(...)xmlSaveFileEnc(...)xmlSaveFileTo(...)xmlSaveFormatFile(...)xmlSaveFormatFileEnc(...)xmlSaveFormatFileTo(...)xmlSaveUri(...)xmlScanName(...)xmlSchemaCleanupTypes(...)xmlSchemaCollapseString(...)xmlSchemaDump(...)xmlSchemaFree(...)xmlSchemaFreeParserCtxt(...)xmlSchemaFreeValidCtxt(...)xmlSchemaInitTypes(...)xmlSchemaIsValid(...)xmlSchemaNewDocParserCtxt(...)xmlSchemaNewMemParserCtxt(...)xmlSchemaNewParserCtxt(...)xmlSchemaNewValidCtxt(...)xmlSchemaParse(...)xmlSchemaSetValidErrors(...)xmlSchemaSetValidOptions(...)xmlSchemaValidCtxtGetOptions(...)xmlSchemaValidCtxtGetParserCtxt(...)xmlSchemaValidateDoc(...)xmlSchemaValidateFile(...)xmlSchemaValidateOneElement(...)xmlSchemaValidateSetFilename(...)xmlSchemaWhiteSpaceReplace(...)xmlSearchNs(...)xmlSearchNsByHref(...)xmlSetCompressMode(...)xmlSetDocCompressMode(...)xmlSetEntityLoader(...)xmlSetListDoc(...)xmlSetNs(...)xmlSetNsProp(...)xmlSetProp(...)xmlSetTreeDoc(...)xmlSetValidErrors(...)xmlSetupParserForBuffer(...)xmlShellPrintNode(...)xmlShellPrintXPathError(...)xmlSkipBlankChars(...)xmlStopParser(...)xmlStrEqual(...)xmlStrQEqual(...)xmlStrcasecmp(...)xmlStrcasestr(...)xmlStrcat(...)xmlStrchr(...)xmlStrcmp(...)xmlStrdup(...)xmlStringDecodeEntities(...)xmlStringGetNodeList(...)xmlStringLenDecodeEntities(...)xmlStringLenGetNodeList(...)xmlStrlen(...)xmlStrncasecmp(...)xmlStrncat(...)xmlStrncatNew(...)xmlStrncmp(...)xmlStrndup(...)xmlStrstr(...)xmlStrsub(...)xmlSubstituteEntitiesDefault(...)xmlTextConcat(...)xmlTextMerge(...)xmlTextReaderAttributeCount(...)xmlTextReaderByteConsumed(...)xmlTextReaderClose(...)xmlTextReaderConstBaseUri(...)xmlTextReaderConstEncoding(...)xmlTextReaderConstLocalName(...)xmlTextReaderConstName(...)xmlTextReaderConstNamespaceUri(...)xmlTextReaderConstPrefix(...)xmlTextReaderConstString(...)xmlTextReaderConstValue(...)xmlTextReaderConstXmlLang(...)xmlTextReaderConstXmlVersion(...)xmlTextReaderCurrentDoc(...)xmlTextReaderCurrentNode(...)xmlTextReaderDepth(...)xmlTextReaderExpand(...)xmlTextReaderGetAttribute(...)xmlTextReaderGetAttributeNo(...)xmlTextReaderGetAttributeNs(...)xmlTextReaderGetErrorHandler(...)xmlTextReaderGetParserColumnNumber(...)xmlTextReaderGetParserLineNumber(...)xmlTextReaderGetParserProp(...)xmlTextReaderGetRemainder(...)xmlTextReaderHasAttributes(...)xmlTextReaderHasValue(...)xmlTextReaderIsDefault(...)xmlTextReaderIsEmptyElement(...)xmlTextReaderIsNamespaceDecl(...)xmlTextReaderIsValid(...)xmlTextReaderLocatorBaseURI(...)xmlTextReaderLocatorLineNumber(...)xmlTextReaderLookupNamespace(...)xmlTextReaderMoveToAttribute(...)xmlTextReaderMoveToAttributeNo(...)xmlTextReaderMoveToAttributeNs(...)xmlTextReaderMoveToElement(...)xmlTextReaderMoveToFirstAttribute(...)xmlTextReaderMoveToNextAttribute(...)xmlTextReaderNext(...)xmlTextReaderNextSibling(...)xmlTextReaderNodeType(...)xmlTextReaderNormalization(...)xmlTextReaderPreserve(...)xmlTextReaderQuoteChar(...)xmlTextReaderRead(...)xmlTextReaderReadAttributeValue(...)xmlTextReaderReadInnerXml(...)xmlTextReaderReadOuterXml(...)xmlTextReaderReadState(...)xmlTextReaderReadString(...)xmlTextReaderRelaxNGSetSchema(...)xmlTextReaderRelaxNGValidate(...)xmlTextReaderRelaxNGValidateCtxt(...)xmlTextReaderSchemaValidate(...)xmlTextReaderSchemaValidateCtxt(...)xmlTextReaderSetErrorHandler(...)xmlTextReaderSetParserProp(...)xmlTextReaderSetSchema(...)xmlTextReaderSetup(...)xmlTextReaderStandalone(...)xmlThrDefDefaultBufferSize(...)xmlThrDefDoValidityCheckingDefaultValue(...)xmlThrDefGetWarningsDefaultValue(...)xmlThrDefIndentTreeOutput(...)xmlThrDefKeepBlanksDefaultValue(...)xmlThrDefLineNumbersDefaultValue(...)xmlThrDefLoadExtDtdDefaultValue(...)xmlThrDefParserDebugEntities(...)xmlThrDefPedanticParserDefaultValue(...)xmlThrDefSaveNoEmptyTags(...)xmlThrDefSubstituteEntitiesDefaultValue(...)xmlThrDefTreeIndentString(...)xmlUCSIsAegeanNumbers(...)xmlUCSIsAlphabeticPresentationForms(...)xmlUCSIsArabic(...)xmlUCSIsArabicPresentationFormsA(...)xmlUCSIsArabicPresentationFormsB(...)xmlUCSIsArmenian(...)xmlUCSIsArrows(...)xmlUCSIsBasicLatin(...)xmlUCSIsBengali(...)xmlUCSIsBlock(...)xmlUCSIsBlockElements(...)xmlUCSIsBopomofo(...)xmlUCSIsBopomofoExtended(...)xmlUCSIsBoxDrawing(...)xmlUCSIsBraillePatterns(...)xmlUCSIsBuhid(...)xmlUCSIsByzantineMusicalSymbols(...)xmlUCSIsCJKCompatibility(...)xmlUCSIsCJKCompatibilityForms(...)xmlUCSIsCJKCompatibilityIdeographs(...)xmlUCSIsCJKCompatibilityIdeographsSupplement(...)xmlUCSIsCJKRadicalsSupplement(...)xmlUCSIsCJKSymbolsandPunctuation(...)xmlUCSIsCJKUnifiedIdeographs(...)xmlUCSIsCJKUnifiedIdeographsExtensionA(...)xmlUCSIsCJKUnifiedIdeographsExtensionB(...)xmlUCSIsCat(...)xmlUCSIsCatC(...)xmlUCSIsCatCc(...)xmlUCSIsCatCf(...)xmlUCSIsCatCo(...)xmlUCSIsCatCs(...)xmlUCSIsCatL(...)xmlUCSIsCatLl(...)xmlUCSIsCatLm(...)xmlUCSIsCatLo(...)xmlUCSIsCatLt(...)xmlUCSIsCatLu(...)xmlUCSIsCatM(...)xmlUCSIsCatMc(...)xmlUCSIsCatMe(...)xmlUCSIsCatMn(...)xmlUCSIsCatN(...)xmlUCSIsCatNd(...)xmlUCSIsCatNl(...)xmlUCSIsCatNo(...)xmlUCSIsCatP(...)xmlUCSIsCatPc(...)xmlUCSIsCatPd(...)xmlUCSIsCatPe(...)xmlUCSIsCatPf(...)xmlUCSIsCatPi(...)xmlUCSIsCatPo(...)xmlUCSIsCatPs(...)xmlUCSIsCatS(...)xmlUCSIsCatSc(...)xmlUCSIsCatSk(...)xmlUCSIsCatSm(...)xmlUCSIsCatSo(...)xmlUCSIsCatZ(...)xmlUCSIsCatZl(...)xmlUCSIsCatZp(...)xmlUCSIsCatZs(...)xmlUCSIsCherokee(...)xmlUCSIsCombiningDiacriticalMarks(...)xmlUCSIsCombiningDiacriticalMarksforSymbols(...)xmlUCSIsCombiningHalfMarks(...)xmlUCSIsCombiningMarksforSymbols(...)xmlUCSIsControlPictures(...)xmlUCSIsCurrencySymbols(...)xmlUCSIsCypriotSyllabary(...)xmlUCSIsCyrillic(...)xmlUCSIsCyrillicSupplement(...)xmlUCSIsDeseret(...)xmlUCSIsDevanagari(...)xmlUCSIsDingbats(...)xmlUCSIsEnclosedAlphanumerics(...)xmlUCSIsEnclosedCJKLettersandMonths(...)xmlUCSIsEthiopic(...)xmlUCSIsGeneralPunctuation(...)xmlUCSIsGeometricShapes(...)xmlUCSIsGeorgian(...)xmlUCSIsGothic(...)xmlUCSIsGreek(...)xmlUCSIsGreekExtended(...)xmlUCSIsGreekandCoptic(...)xmlUCSIsGujarati(...)xmlUCSIsGurmukhi(...)xmlUCSIsHalfwidthandFullwidthForms(...)xmlUCSIsHangulCompatibilityJamo(...)xmlUCSIsHangulJamo(...)xmlUCSIsHangulSyllables(...)xmlUCSIsHanunoo(...)xmlUCSIsHebrew(...)xmlUCSIsHighPrivateUseSurrogates(...)xmlUCSIsHighSurrogates(...)xmlUCSIsHiragana(...)xmlUCSIsIPAExtensions(...)xmlUCSIsIdeographicDescriptionCharacters(...)xmlUCSIsKanbun(...)xmlUCSIsKangxiRadicals(...)xmlUCSIsKannada(...)xmlUCSIsKatakana(...)xmlUCSIsKatakanaPhoneticExtensions(...)xmlUCSIsKhmer(...)xmlUCSIsKhmerSymbols(...)xmlUCSIsLao(...)xmlUCSIsLatin1Supplement(...)xmlUCSIsLatinExtendedA(...)xmlUCSIsLatinExtendedAdditional(...)xmlUCSIsLatinExtendedB(...)xmlUCSIsLetterlikeSymbols(...)xmlUCSIsLimbu(...)xmlUCSIsLinearBIdeograms(...)xmlUCSIsLinearBSyllabary(...)xmlUCSIsLowSurrogates(...)xmlUCSIsMalayalam(...)xmlUCSIsMathematicalAlphanumericSymbols(...)xmlUCSIsMathematicalOperators(...)xmlUCSIsMiscellaneousMathematicalSymbolsA(...)xmlUCSIsMiscellaneousMathematicalSymbolsB(...)xmlUCSIsMiscellaneousSymbols(...)xmlUCSIsMiscellaneousSymbolsandArrows(...)xmlUCSIsMiscellaneousTechnical(...)xmlUCSIsMongolian(...)xmlUCSIsMusicalSymbols(...)xmlUCSIsMyanmar(...)xmlUCSIsNumberForms(...)xmlUCSIsOgham(...)xmlUCSIsOldItalic(...)xmlUCSIsOpticalCharacterRecognition(...)xmlUCSIsOriya(...)xmlUCSIsOsmanya(...)xmlUCSIsPhoneticExtensions(...)xmlUCSIsPrivateUse(...)xmlUCSIsPrivateUseArea(...)xmlUCSIsRunic(...)xmlUCSIsShavian(...)xmlUCSIsSinhala(...)xmlUCSIsSmallFormVariants(...)xmlUCSIsSpacingModifierLetters(...)xmlUCSIsSpecials(...)xmlUCSIsSuperscriptsandSubscripts(...)xmlUCSIsSupplementalArrowsA(...)xmlUCSIsSupplementalArrowsB(...)xmlUCSIsSupplementalMathematicalOperators(...)xmlUCSIsSupplementaryPrivateUseAreaA(...)xmlUCSIsSupplementaryPrivateUseAreaB(...)xmlUCSIsSyriac(...)xmlUCSIsTagalog(...)xmlUCSIsTagbanwa(...)xmlUCSIsTags(...)xmlUCSIsTaiLe(...)xmlUCSIsTaiXuanJingSymbols(...)xmlUCSIsTamil(...)xmlUCSIsTelugu(...)xmlUCSIsThaana(...)xmlUCSIsThai(...)xmlUCSIsTibetan(...)xmlUCSIsUgaritic(...)xmlUCSIsUnifiedCanadianAboriginalSyllabics(...)xmlUCSIsVariationSelectors(...)xmlUCSIsVariationSelectorsSupplement(...)xmlUCSIsYiRadicals(...)xmlUCSIsYiSyllables(...)xmlUCSIsYijingHexagramSymbols(...)xmlURIEscape(...)xmlURIEscapeStr(...)xmlURIGetAuthority(...)xmlURIGetFragment(...)xmlURIGetOpaque(...)xmlURIGetPath(...)xmlURIGetPort(...)xmlURIGetQuery(...)xmlURIGetQueryRaw(...)xmlURIGetScheme(...)xmlURIGetServer(...)xmlURIGetUser(...)xmlURISetAuthority(...)xmlURISetFragment(...)xmlURISetOpaque(...)xmlURISetPath(...)xmlURISetPort(...)xmlURISetQuery(...)xmlURISetQueryRaw(...)xmlURISetScheme(...)xmlURISetServer(...)xmlURISetUser(...)xmlURIUnescapeString(...)xmlUTF8Charcmp(...)xmlUTF8Size(...)xmlUTF8Strlen(...)xmlUTF8Strloc(...)xmlUTF8Strndup(...)xmlUTF8Strpos(...)xmlUTF8Strsize(...)xmlUTF8Strsub(...)xmlUnlinkNode(...)xmlUnregisterInputCallback(...)xmlUnsetNsProp(...)xmlUnsetProp(...)xmlValidCtxtNormalizeAttributeValue(...)xmlValidNormalizeAttributeValue(...)xmlValidateDocument(...)xmlValidateDocumentFinal(...)xmlValidateDtd(...)xmlValidateDtdFinal(...)xmlValidateElement(...)xmlValidateNCName(...)xmlValidateNMToken(...)xmlValidateName(...)xmlValidateNameValue(...)xmlValidateNamesValue(...)xmlValidateNmtokenValue(...)xmlValidateNmtokensValue(...)xmlValidateNotationUse(...)xmlValidateOneAttribute(...)xmlValidateOneElement(...)xmlValidateOneNamespace(...)xmlValidatePopElement(...)xmlValidatePushCData(...)xmlValidatePushElement(...)xmlValidateQName(...)xmlValidateRoot(...)xmlXIncludeProcess(...)xmlXIncludeProcessFlags(...)xmlXIncludeProcessTree(...)xmlXIncludeProcessTreeFlags(...)xmlXPathAddValues(...)xmlXPathBooleanFunction(...)xmlXPathCastBooleanToNumber(...)xmlXPathCastBooleanToString(...)xmlXPathCastNodeToNumber(...)xmlXPathCastNodeToString(...)xmlXPathCastNumberToBoolean(...)xmlXPathCastNumberToString(...)xmlXPathCastStringToBoolean(...)xmlXPathCastStringToNumber(...)xmlXPathCeilingFunction(...)xmlXPathCmpNodes(...)xmlXPathCompareValues(...)xmlXPathConcatFunction(...)xmlXPathContainsFunction(...)xmlXPathContextSetCache(...)xmlXPathCountFunction(...)xmlXPathDivValues(...)xmlXPathEqualValues(...)xmlXPathErr(...)xmlXPathEval(...)xmlXPathEvalExpr(...)xmlXPathEvalExpression(...)xmlXPathFalseFunction(...)xmlXPathFloorFunction(...)xmlXPathFreeContext(...)xmlXPathFreeParserContext(...)xmlXPathGetContextDoc(...)xmlXPathGetContextNode(...)xmlXPathGetContextPosition(...)xmlXPathGetContextSize(...)xmlXPathGetFunction(...)xmlXPathGetFunctionURI(...)xmlXPathIdFunction(...)xmlXPathInit(...)xmlXPathIsInf(...)xmlXPathIsNaN(...)xmlXPathIsNodeType(...)xmlXPathLangFunction(...)xmlXPathLastFunction(...)xmlXPathLocalNameFunction(...)xmlXPathModValues(...)xmlXPathMultValues(...)xmlXPathNamespaceURIFunction(...)xmlXPathNewBoolean(...)xmlXPathNewCString(...)xmlXPathNewContext(...)xmlXPathNewFloat(...)xmlXPathNewNodeSet(...)xmlXPathNewParserContext(...)xmlXPathNewString(...)xmlXPathNewValueTree(...)xmlXPathNextAncestor(...)xmlXPathNextAncestorOrSelf(...)xmlXPathNextAttribute(...)xmlXPathNextChild(...)xmlXPathNextDescendant(...)xmlXPathNextDescendantOrSelf(...)xmlXPathNextFollowing(...)xmlXPathNextFollowingSibling(...)xmlXPathNextNamespace(...)xmlXPathNextParent(...)xmlXPathNextPreceding(...)xmlXPathNextPrecedingSibling(...)xmlXPathNextSelf(...)xmlXPathNodeEval(...)xmlXPathNodeSetFreeNs(...)xmlXPathNormalizeFunction(...)xmlXPathNotEqualValues(...)xmlXPathNotFunction(...)xmlXPathNsLookup(...)xmlXPathNumberFunction(...)xmlXPathOrderDocElems(...)xmlXPathParseNCName(...)xmlXPathParseName(...)xmlXPathParserGetContext(...)xmlXPathPopBoolean(...)xmlXPathPopNumber(...)xmlXPathPopString(...)xmlXPathPositionFunction(...)xmlXPathRegisterAllFunctions(...)xmlXPathRegisterNs(...)xmlXPathRegisterVariable(...)xmlXPathRegisteredFuncsCleanup(...)xmlXPathRegisteredNsCleanup(...)xmlXPathRegisteredVariablesCleanup(...)xmlXPathRoot(...)xmlXPathRoundFunction(...)xmlXPathSetContextDoc(...)xmlXPathSetContextNode(...)xmlXPathStartsWithFunction(...)xmlXPathStringEvalNumber(...)xmlXPathStringFunction(...)xmlXPathStringLengthFunction(...)xmlXPathSubValues(...)xmlXPathSubstringAfterFunction(...)xmlXPathSubstringBeforeFunction(...)xmlXPathSubstringFunction(...)xmlXPathSumFunction(...)xmlXPathTranslateFunction(...)xmlXPathTrueFunction(...)xmlXPathValueFlipSign(...)xmlXPathVariableLookup(...)xmlXPathVariableLookupNS(...)xmlXPatherror(...)xmlXPtrEval(...)xmlXPtrEvalRangePredicate(...)xmlXPtrNewCollapsedRange(...)xmlXPtrNewContext(...)xmlXPtrNewLocationSetNodes(...)xmlXPtrNewRange(...)xmlXPtrNewRangeNodes(...)xmlXPtrRangeToFunction(...)/usr/lib/python3/dist-packages/libxml2mod.cpython-310-x86_64-linux-gnu.so
๐ This is a compiled C extension module for CPython 3.10 on x86_64 Linux systems. It provides direct bindings from Python to the libxml2 C library.
Generated by phpman v4.9.27 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-19 17:58 @216.73.216.114
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format