Skip to content

jasmaa/py-fpff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

py-fpff

PyPi version RTD build

Library for working with FPFF.

Getting Started

Install

pip install py-fpff

Sample Code

from py_fpff import FPFF, SectionType

with open('./input.fpff') as f:
    fpff = FPFF(f)
    fpff.append(SectionType.ASCII, 'Hello, world!')
    fpff.export('./exported')

Testing

python -m unittest

Building Documentation

# Install Sphinx and ReadTheDocs theme
pip install Sphinx sphinx_rtd_theme

cd ./docs
make html