API Reference
WikiLibrary.getBookSignature( index )
Parameters:
| index | the index of the book we are interested |
Returns:
A tuple of two values:
- collectionName: the name of the collection the book belongs to
- bookId: the internal id of the book
Remarks:
Tuples allow python to return multiple values from a function. You would call this function as follows:
(collectionName, bookId) = theAppData.library.getBookSignature(index)