GENERAL HELP ABOUT FASTERSAVE

FasterSave: [class]
    read() [def]
        args: [location, mode="r"]
            location:
                the location of the file to read
            mode:
                essentialy the type, for example rb (read bytes)
    write() [def]
        args: [location, content, mode="w"]
            location:
                the location of the file to write/edit
            content:
                what will be written to the file
            mode:
                essentialy the type, for example wb (write bytes)

    append() [def]
        args: [location, content, mode="a"]
            location:
                the location of the file to edit
            content:
                what will be added to the file
            mode:
                essentialy the type, for example ab (append bytes)