Skip to content

jac32/PythonOpenMath

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 

Repository files navigation

PythonOpenMath

Basic support for the OpenMath standard in Python

Documentation

Documentation is auto-generated using the Sphinx documentation tool.

Provided the style of docstring matches that below, the documentation for the currently indexed files can be generated via a Makefile in the Docs folder.

To build the html format of the docs simply run $ make html

Docstring Example

	def ParseOMI(node):
		""" Parses a basic OpenMath integer node

	    Translates between the OpenMath XML representation of an integer,
		i.e. an OMI node, and a Python integer

	    :param node: The OMI XML node object
		:returns: The integer value of the node
		:rtype: int
		"""
    return int(node.text)

About

Basic support for the OpenMath standard in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published