aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2009-12-18 20:59:45 +0100
committerOlivier Tilloy <olivier@tilloy.net>2009-12-18 20:59:45 +0100
commitdd71025600f6b432c8c3c008f10adb5d3b4756df (patch)
tree7cf35682fb0c5e652607a68775f49c95c0fa7283 /src
parentbc8746035661397a8b6703e7a07a099c812bed4f (diff)
downloadpyexiv2-dd71025600f6b432c8c3c008f10adb5d3b4756df.tar.gz
Tweaks to the documentation of the module.
Diffstat (limited to 'src')
-rw-r--r--src/pyexiv2/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pyexiv2/__init__.py b/src/pyexiv2/__init__.py
index d4e83cd..99d9989 100644
--- a/src/pyexiv2/__init__.py
+++ b/src/pyexiv2/__init__.py
@@ -30,9 +30,9 @@ Manipulation of EXIF, IPTC and XMP metadata and thumbnails embedded in images.
The L{ImageMetadata} class provides read/write access to all the metadata and
the various thumbnails embedded in an image file such as JPEG and TIFF files.
-Metadata is accessed through subclasses of L{MetadataTag} and the tag values are
-conveniently wrapped in python objects.
-A tag containing a date/time information for the image
+Metadata is accessed through tag classes (L{ExifTag}, L{IptcTag}, L{XmpTag})
+and the tag values are conveniently wrapped in python objects.
+For example, a tag containing a date/time information for the image
(e.g. C{Exif.Photo.DateTimeOriginal}) will be represented by a python
C{datetime.datetime} object.