chemaxon.io.exporter

def export_mol(*args, **kwargs):

Molecule export

You can find more information about file formats and options on the following link: https://docs.chemaxon.com/display/docs/formats_index.md

Here you can find the supported formats: https://docs.chemaxon.com/display/docs/python-api_limitations.md

Parameters

mol : Molecule Input molecule format : str This option is to specify the format and options for the export

Returns

exported : str The exported molecule

def open_for_export(*args, **kwargs):

Factory function to create an instance of the _MolExporter with which molecules can be exported into files in the supported formats. For these, refer to: https://docs.chemaxon.com/display/docs/python-api_limitations.md. For more information about file formats and format options, see: https://docs.chemaxon.com/display/docs/formats_index.md.

Parameters
  • file_name: The file path, where to export molecule data.
  • format_opts: The file format (e.g.: sdf,smiles. cxon, etc.)
Returns

A _MolExporter instance. Supported methods: write(Molecule), flush(), close()