networkx.readwrite.gml.literal_stringizer¶
-
literal_stringizer(value)[source]¶ Convert a
valueto a Python literal in GML representation.Parameters: value (object) – The valueto be converted to GML representation.Returns: rep – A double-quoted Python literal representing value. Unprintable characters are replaced by XML character references. Return type: string Raises: ValueError– Ifvaluecannot be converted to GML.Notes
literal_stringizeris largely the same asreprin terms of functionality but attempts prefixunicodeandbytesliterals withuandbto provide better interoperability of data generated by Python 2 and Python 3.The original value can be recovered using the
networkx.readwrite.gml.literal_destringizer()function.