Repository URL to install this package:
|
Version:
0.2.4 ▾
|
# -*- coding: utf-8 -*-
#############################################
## (C)opyright by Dirk Holtwick ##
## All rights reserved ##
#############################################
__version__ = "$Revision: 176 $"
__author__ = "$Author: kgrodzicki $"
__date__ = "$Date: 2011-01-15 10:11:47 +0100 (Fr, 15 July 2011) $"
"""
HTML/CSS to PDF converter
Test for support left/right (even/odd) pages
"""
from cookbook import html2pdf
if __name__ == "__main__":
xhtml = open('test-template-even-odd.html')
html2pdf(xhtml.read(), "testEvenOdd.pdf")