LeenO computo metrico con LibreOffice  3.22.0
Il software libero per la gestione di computi metrici e contabilità lavori.
Membri pubblici | Proprietà | Elenco di tutti i membri
Riferimenti per la classe pdf.DocumentInformation

Membri pubblici

def __init__ (self)
 
def getText (self, key)
 
- Membri pubblici ereditati da generic.DictionaryObject
def raw_get (self, key)
 
def __setitem__ (self, key, value)
 
def setdefault (self, key, value=None)
 
def __getitem__ (self, key)
 
def getXmpMetadata (self)
 Retrieves XMP (Extensible Metadata Platform) data relevant to the this object, if available. Continua...
 
def writeToStream (self, stream, encryption_key)
 
def readFromStream (stream, pdf)
 
- Membri pubblici ereditati da generic.PdfObject
def getObject (self)
 

Proprietà

 title = property(lambda self: self.getText("/Title"))
 
 title_raw = property(lambda self: self.get("/Title"))
 
 author = property(lambda self: self.getText("/Author"))
 
 author_raw = property(lambda self: self.get("/Author"))
 
 subject = property(lambda self: self.getText("/Subject"))
 
 subject_raw = property(lambda self: self.get("/Subject"))
 
 creator = property(lambda self: self.getText("/Creator"))
 
 creator_raw = property(lambda self: self.get("/Creator"))
 
 producer = property(lambda self: self.getText("/Producer"))
 
 producer_raw = property(lambda self: self.get("/Producer"))
 
- Proprietà ereditati da generic.DictionaryObject
 xmpMetadata = property(lambda self: self.getXmpMetadata(), None, None)
 Read-only property that accesses the {getXmpData} function. Continua...
 

Altri membri ereditati

- Attributi pubblici statici ereditati da generic.DictionaryObject
 readFromStream = staticmethod(readFromStream)
 

Descrizione dettagliata

A class representing the basic document metadata provided in a PDF File.
This class is accessible through
:meth:`getDocumentInfo()<PyPDF2.PdfFileReader.getDocumentInfo()>`

All text properties of the document metadata have
*two* properties, eg. author and author_raw. The non-raw property will
always return a ``TextStringObject``, making it ideal for a case where
the metadata is being displayed. The raw property can sometimes return
a ``ByteStringObject``, if PyPDF2 was unable to decode the string's
text encoding; this requires additional safety in the caller and
therefore is not as commonly accessed.

Definizione alla linea 2781 del file pdf.py.

Documentazione dei costruttori e dei distruttori

◆ __init__()

def pdf.DocumentInformation.__init__ (   self)

Definizione alla linea 2796 del file pdf.py.

Documentazione delle funzioni membro

◆ getText()

def pdf.DocumentInformation.getText (   self,
  key 
)

Definizione alla linea 2799 del file pdf.py.

Documentazione delle proprietà

◆ author

pdf.DocumentInformation.author = property(lambda self: self.getText("/Author"))
static

Definizione alla linea 2812 del file pdf.py.

◆ author_raw

pdf.DocumentInformation.author_raw = property(lambda self: self.get("/Author"))
static

Definizione alla linea 2816 del file pdf.py.

◆ creator

pdf.DocumentInformation.creator = property(lambda self: self.getText("/Creator"))
static

Definizione alla linea 2826 del file pdf.py.

◆ creator_raw

pdf.DocumentInformation.creator_raw = property(lambda self: self.get("/Creator"))
static

Definizione alla linea 2832 del file pdf.py.

◆ producer

pdf.DocumentInformation.producer = property(lambda self: self.getText("/Producer"))
static

Definizione alla linea 2835 del file pdf.py.

◆ producer_raw

pdf.DocumentInformation.producer_raw = property(lambda self: self.get("/Producer"))
static

Definizione alla linea 2841 del file pdf.py.

◆ subject

pdf.DocumentInformation.subject = property(lambda self: self.getText("/Subject"))
static

Definizione alla linea 2819 del file pdf.py.

◆ subject_raw

pdf.DocumentInformation.subject_raw = property(lambda self: self.get("/Subject"))
static

Definizione alla linea 2823 del file pdf.py.

◆ title

pdf.DocumentInformation.title = property(lambda self: self.getText("/Title"))
static

Definizione alla linea 2805 del file pdf.py.

◆ title_raw

pdf.DocumentInformation.title_raw = property(lambda self: self.get("/Title"))
static

Definizione alla linea 2809 del file pdf.py.


La documentazione per questa classe è stata generata a partire dal seguente file: