SSL - handler for Save and Load data in BGE (SixSaveLoad + Documentation) v0.5

Hello guys
I’m writing various resources for the BGE, and the SSL is an handler for save and load the game objects of the scene or scene list.
I’ll leave a description of the module and little documentation here.

DOC:

#========================
#SSL (SixSaveLoad) DOC
#========================sll.handler (class):

#----------- handler.add_object(obj_name) ------------

ssl.hander.add_object(obj_name)

[INDENT=2]info: Add objects from scene to data
[/INDENT]
[INDENT=2]args:
[/INDENT]
[INDENT=3]obj_name : The name of the object for save in data[/INDENT]

#----------- handler.add_all_objects(scene) ------------

ssl.handler.add_all_objects(scene)

[INDENT=2]info : Add all objects from current scene to data
[/INDENT]
[INDENT=2]args:
[/INDENT]
[INDENT=3]scene(optional) : Add all objects from a scene (scene=“scenename”)
[/INDENT]
[INDENT=3]note: if the scene is == None or not set a value,
[/INDENT]
[INDENT=3]the handler will add all objects from the current scene.[/INDENT]

#----------- handler.add_all_objects_from_scenes() ------------

ssl.handler.add_all_objects_from_scenes()

[INDENT=2]info : Add all objects of all scenes to data
[/INDENT]
[INDENT=2]args:
[/INDENT]
[INDENT=3]Not required[/INDENT]

#----------- handler.save_to_file(file_name) ------------

ssl.hander.save_to_file(file_name)

[INDENT=2]info: Save the current data to file
[/INDENT]
[INDENT=2]args:
[/INDENT]
[INDENT=3]file_name : The name of file to create and save the data block[/INDENT]

#----------- handler.load_from_file(file_name) ------------

sll.handler.load_from_file(file_name)

[INDENT=2]info: Load data from file
[/INDENT]
[INDENT=2]args:
[/INDENT]
[INDENT=3]file_name : The name of file to load data
[/INDENT]
[INDENT=3]NOTE : this module is complete. If you save the data “ssl.handler().save_to_file(filename)”
[/INDENT]
[INDENT=4]The data save the position, orientation, scale, color and all game properties of the objects.
[/INDENT]

The .blend and ssl module here: http://www.4shared.com/rar/Wfy-ykCBce/SSL_v05.html
Thanks for all, and keep blending =)