web-dev-qa-db-ja.com

PDF properties / metadata in Python

Pythonを使用してPDFファイルに保存されているタイトル、著者、件名、キーワードなどのプロパティ/メタデータを読み取るにはどうすればよいですか?

34
Khaleel

pdfminer を試してください:

from pdfminer.pdfparser import PDFParser
from pdfminer.pdfdocument import PDFDocument

fp = open('diveintopython.pdf', 'rb')
parser = PDFParser(fp)
doc = PDFDocument(parser)

print(doc.info)  # The "Info" metadata

出力は次のとおりです。

>>> [{'CreationDate': 'D:20040520151901-0500',
  'Creator': 'DocBook XSL Stylesheets V1.52.2',
  'Keywords': 'Python, Dive Into Python, tutorial, object-oriented, programming, documentation, book, free',
  'Producer': 'htmldoc 1.8.23 Copyright 1997-2002 Easy Software Products, All Rights Reserved.',
  'Title': 'Dive Into Python'}]

詳細については、このチュートリアルをご覧ください: PythonでPDFメタデータを抽出するための軽量XMPパーサー

38
namit

Python 3を参照してください PyPDF2 @Khaleelのサンプルコードを次のように更新:

from PyPDF2 import PdfFileReader
pdf_toread = PdfFileReader(open("test.pdf", "rb"))
pdf_info = pdf_toread.getDocumentInfo()
print(str(pdf_info))

pip install PyPDF2を使用してインストールします。

10
Morten Zilmer

注:pyPdf homepage は、もはやメンテナンスされていないことを示しています。

pyPdf を使用してこれを実装しました。以下のサンプルコードをご覧ください。

from pyPdf import PdfFileReader
pdf_toread = PdfFileReader(open("doc2.pdf", "rb"))
pdf_info = pdf_toread.getDocumentInfo()
print(str(pdf_info))

出力:

{'/Title': u'Microsoft Word - Agnico-Eagle - Complaint (00040197-2)', '/CreationDate': u"D:20111108111228-05'00'", '/Producer': u'Acrobat Distiller 10.0.0 (Windows)', '/ModDate': u"D:20111108112409-05'00'", '/Creator': u'PScript5.dll Version 5.2.2', '/Author': u'LdelPino'}
5
Khaleel

Python 3および新しいpdfminer(pip install pdfminer3k):

import os
from pdfminer.pdfparser import PDFParser
from pdfminer.pdfparser import PDFDocument

fp = open("foo.pdf", 'rb')
parser = PDFParser(fp)
doc = PDFDocument(parser)
parser.set_document(doc)
doc.set_parser(parser)
if len(doc.info) > 0:
    info = doc.info[0]
    print(info)
4
Rabash