0. はじめに PythonのPDF作成ライブラリのreportlabを使用して履歴書フォーマット(JIS規格)を作成しました。 1. 実行環境 OS : macOS High Sierra 10.13.6 python : 3.7.2 reportlab : 3.5.23 2. インストール方法 def make(filename="resume"): # ファイル名の設定 pdf_canvas = set_info(filename) # キャンバス名の設定 print_string(pdf_canvas) pdf_canvas.save() # pdfを保存 def set_info(filename): pdf_canvas = canvas.Canvas("./{0}.pdf".format(filename)) # 保存先の設定 # ファイル情報の登録(任意) pdf_canv