import pydicom
import pdfkit

print('Hello world')

print('Version of pydicom: %s' % pydicom.__version__)
plan = pydicom.read_file('/usr/local/lib/python3.8/dist-packages/pydicom/data/test_files/rtplan.dcm')
print(plan)

pdfkit.from_string('Hello!', 'out.pdf')
