diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2010-03-24 12:53:22 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2010-03-24 12:53:22 +0100 |
commit | 0cb1959adb6f84f475f655aec7b150163eff4f83 (patch) | |
tree | 6c6bacc13b1194e0f0f96bb78adca26da4cba8f0 | |
parent | f1e9d950700d61270241d86b13895b0cb2b4a44c (diff) | |
download | pyexiv2-0cb1959adb6f84f475f655aec7b150163eff4f83.tar.gz |
Removed useless markup from the module's docstring.
-rw-r--r-- | src/pyexiv2/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pyexiv2/__init__.py b/src/pyexiv2/__init__.py index 5cf82fa..229a683 100644 --- a/src/pyexiv2/__init__.py +++ b/src/pyexiv2/__init__.py @@ -27,14 +27,14 @@ """ 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 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 tag classes (L{ExifTag}, L{IptcTag}, L{XmpTag}) +Metadata is accessed through tag classes (ExifTag, IptcTag, 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. +(e.g. Exif.Photo.DateTimeOriginal) will be represented by a python +datetime.datetime object. This module is a python layer on top of the low-level python binding of the C++ library Exiv2, libexiv2python. |