mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-06 12:15:34 +01:00
documentation fix
This commit is contained in:
parent
fc5b8a22e6
commit
c693c6f900
1 changed files with 4 additions and 3 deletions
|
|
@ -16,9 +16,10 @@
|
|||
"""
|
||||
This module presents an easy to use interface for getting and setting meta information in LRF files.
|
||||
Just create an L{LRFMetaFile} object and use its properties to get and set meta information. For example:
|
||||
lrf = LRFMetaFile("mybook.lrf")
|
||||
print lrf.title, lrf.author
|
||||
lrf.category = "History"
|
||||
|
||||
>>> lrf = LRFMetaFile("mybook.lrf")
|
||||
>>> print lrf.title, lrf.author
|
||||
>>> lrf.category = "History"
|
||||
"""
|
||||
|
||||
import struct, array, zlib, StringIO
|
||||
|
|
|
|||
Loading…
Reference in a new issue