Metadata-Version: 2.1
Name: py-fpff
Version: 0.0.1
Summary: Reads, writes, and exports FPFF files
Home-page: https://github.com/jasmaa/py-fpff
Author: Jason Maa
License: UNKNOWN
Description: # py-fpff
        
        Reads, writes, and exports FPFF files
        
        ## Installation and Usage
        
        ### Install
        ```
        pip install py-fpff
        ```
        ### Sample code
        ```
        from py_fpff import fpff
        
        # create fpff
        s = fpff.FPFF()
        s.add("hello world", fpff.FileType.ASCII)
        
        # write
        s.write("hello_world.fpff")
        
        # read
        s.read("hello_world_2.fpff")
        
        # export
        s.export("export-hello-world-2")
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
