Skip to content

sciencewriter module

Main module for the ScienceWrite application model.

ScienceWriterApp

This class represents the application as a whole that exposes the API for other derived works to access and to manipulate the internals of the writing project.

persist_information(self)

This function takes the internal state of the application and persists it to a location from where it can be instantiated at a later time.

Source code in sciencewriter/sciencewriter.py
def persist_information(self):
    """This function takes the internal state of the application and persists it to a location from where it can be instantiated at a later time.
    """
    pass

reload_information(self)

This function takes an information state persisted at some location and it will instantiate the application based on that information.

Source code in sciencewriter/sciencewriter.py
def reload_information(self):
    """This function takes an information state persisted at some location and it will instantiate the application based on that information.
    """
    pass

Last update: 2021-06-04