m_librarian.db module

class m_librarian.db.Author(**kw)[source]

Bases: sqlobject.main.SQLObject

addBook(obj)
books
count
count_idx = <sqlobject.index.SODatabaseIndex object>
full_name_idx = <sqlobject.index.SODatabaseIndex object>
fullname
j = author
misc_name
name
q = author
removeBook(obj)
class sqlmeta(instance)

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'count': <IntCol b5e2f04cL count>, 'misc_name': <UnicodeCol b5e2f5acL misc_name>, 'name': <UnicodeCol b5e1b6acL name>, 'surname': <UnicodeCol b5e1b5ccL surname>}
columnList = [<SOUnicodeCol surname not null>, <SOUnicodeCol name not null>, <SOUnicodeCol misc_name not null>, <SOIntCol count not null>]
columns = {'count': <SOIntCol count not null>, 'misc_name': <SOUnicodeCol misc_name not null>, 'name': <SOUnicodeCol name not null>, 'surname': <SOUnicodeCol surname not null>}
idName = 'id'
indexDefinitions = [<DatabaseIndex b5dd080cL {'unique': True, 'name': 'full_name_idx', 'columns': (<UnicodeCol b5e1b5ccL surname>, <UnicodeCol b5e1b6acL name>, <UnicodeCol b5e2f5acL misc_name>)}>, <DatabaseIndex b5dd084cL {'name': 'count_idx', 'columns': (<IntCol b5e2f04cL count>,)}>]
indexes = [<sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>]
joinDefinitions = [<sqlobject.joins.RelatedJoin object>]
joins = [<sqlobject.joins.SORelatedJoin object>]
soClass

alias of m_librarian.db.Author

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'author'
surname
class m_librarian.db.Book(**kw)[source]

Bases: sqlobject.main.SQLObject

addAuthor(obj)
addGenre(obj)
archive
archive_file_idx = <sqlobject.index.SODatabaseIndex object>
archive_idx = <sqlobject.index.SODatabaseIndex object>
authors
date
date_idx = <sqlobject.index.SODatabaseIndex object>
deleted
deleted_idx = <sqlobject.index.SODatabaseIndex object>
extension
extensionID
extension_idx = <sqlobject.index.SODatabaseIndex object>
file
file_idx = <sqlobject.index.SODatabaseIndex object>
genres
j = book
language
languageID
language_idx = <sqlobject.index.SODatabaseIndex object>
lib_id
q = book
removeAuthor(obj)
removeGenre(obj)
ser_no
ser_no_idx = <sqlobject.index.SODatabaseIndex object>
series
series_idx = <sqlobject.index.SODatabaseIndex object>
size
size_idx = <sqlobject.index.SODatabaseIndex object>
class sqlmeta(instance)

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'archive': <StringCol b5ddea6cL archive>, 'date': <DateCol b5ddeb2cL date>, 'deleted': <BoolCol b5ddeaecL deleted>, 'extensionID': <ForeignKey b5ddeb0cL extension>, 'file': <UnicodeCol b5ddea8cL file>, 'languageID': <ForeignKey b5ddeb4cL language>, 'lib_id': <StringCol b5ddeaccL lib_id>, 'ser_no': <IntCol b5ddea4cL ser_no>, 'series': <UnicodeCol b5ddea2cL series>, 'size': <IntCol b5ddeaacL size>, 'title': <UnicodeCol b5dde34cL title>}
columnList = [<SOUnicodeCol title not null>, <SOUnicodeCol series not null>, <SOIntCol ser_no>, <SOStringCol archive not null>, <SOUnicodeCol file not null>, <SOIntCol size not null>, <SOStringCol lib_id not null>, <SOBoolCol deleted not null>, <SOForeignKey extensionID connected to Extension not null>, <SODateCol date not null>, <SOForeignKey languageID connected to Language>]
columns = {'archive': <SOStringCol archive not null>, 'date': <SODateCol date not null>, 'deleted': <SOBoolCol deleted not null>, 'extensionID': <SOForeignKey extensionID connected to Extension not null>, 'file': <SOUnicodeCol file not null>, 'languageID': <SOForeignKey languageID connected to Language>, 'lib_id': <SOStringCol lib_id not null>, 'ser_no': <SOIntCol ser_no>, 'series': <SOUnicodeCol series not null>, 'size': <SOIntCol size not null>, 'title': <SOUnicodeCol title not null>}
idName = 'id'
indexDefinitions = [<DatabaseIndex b5ddeb6cL {'name': 'title_idx', 'columns': (<UnicodeCol b5dde34cL title>,)}>, <DatabaseIndex b5ddea0cL {'name': 'series_idx', 'columns': (<UnicodeCol b5ddea2cL series>,)}>, <DatabaseIndex b5ddebacL {'name': 'ser_no_idx', 'columns': (<IntCol b5ddea4cL ser_no>,)}>, <DatabaseIndex b5ddebecL {'name': 'archive_idx', 'columns': (<StringCol b5ddea6cL archive>,)}>, <DatabaseIndex b5ddec2cL {'unique': True, 'name': 'archive_file_idx', 'columns': (<StringCol b5ddea6cL archive>, <UnicodeCol b5ddea8cL file>)}>, <DatabaseIndex b5ddec4cL {'name': 'file_idx', 'columns': (<UnicodeCol b5ddea8cL file>,)}>, <DatabaseIndex b5ddec8cL {'name': 'size_idx', 'columns': (<IntCol b5ddeaacL size>,)}>, <DatabaseIndex b5ddecccL {'name': 'deleted_idx', 'columns': (<BoolCol b5ddeaecL deleted>,)}>, <DatabaseIndex b5dded0cL {'name': 'extension_idx', 'columns': (<ForeignKey b5ddeb0cL extension>,)}>, <DatabaseIndex b5dded4cL {'name': 'date_idx', 'columns': (<DateCol b5ddeb2cL date>,)}>, <DatabaseIndex b5dded8cL {'name': 'language_idx', 'columns': (<ForeignKey b5ddeb4cL language>,)}>]
indexes = [<sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>]
joinDefinitions = [<sqlobject.joins.RelatedJoin object>, <sqlobject.joins.RelatedJoin object>]
joins = [<sqlobject.joins.SORelatedJoin object>, <sqlobject.joins.SORelatedJoin object>]
soClass

alias of m_librarian.db.Book

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'book'
title
title_idx = <sqlobject.index.SODatabaseIndex object>
class m_librarian.db.Extension(**kw)[source]

Bases: sqlobject.main.SQLObject

classmethod byName(val, connection=None)
count
count_idx = <sqlobject.index.SODatabaseIndex object>
j = extension
name
q = extension
class sqlmeta(instance)

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'count': <IntCol b5ded3acL count>, 'name': <UnicodeCol b5ded9ccL name>}
columnList = [<SOUnicodeCol name not null>, <SOIntCol count not null>]
columns = {'count': <SOIntCol count not null>, 'name': <SOUnicodeCol name not null>}
idName = 'id'
indexDefinitions = [<DatabaseIndex b5ded9ecL {'name': 'count_idx', 'columns': (<IntCol b5ded3acL count>,)}>]
indexes = [<sqlobject.index.SODatabaseIndex object>]
joinDefinitions = []
joins = []
soClass

alias of m_librarian.db.Extension

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'extension'
class m_librarian.db.Genre(**kw)[source]

Bases: sqlobject.main.SQLObject

addBook(obj)
books
classmethod byName(val, connection=None)
count
count_idx = <sqlobject.index.SODatabaseIndex object>
j = genre
name
q = genre
removeBook(obj)
class sqlmeta(instance)

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'count': <IntCol b5dede8cL count>, 'name': <UnicodeCol b5dede0cL name>, 'title': <UnicodeCol b5dede6cL title>}
columnList = [<SOUnicodeCol name not null>, <SOUnicodeCol title not null>, <SOIntCol count not null>]
columns = {'count': <SOIntCol count not null>, 'name': <SOUnicodeCol name not null>, 'title': <SOUnicodeCol title not null>}
idName = 'id'
indexDefinitions = [<DatabaseIndex b5dede2cL {'name': 'title_idx', 'columns': (<UnicodeCol b5dede6cL title>,)}>, <DatabaseIndex b5dedeecL {'name': 'count_idx', 'columns': (<IntCol b5dede8cL count>,)}>]
indexes = [<sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>]
joinDefinitions = [<sqlobject.joins.RelatedJoin object>]
joins = [<sqlobject.joins.SORelatedJoin object>]
soClass

alias of m_librarian.db.Genre

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'genre'
title
title_idx = <sqlobject.index.SODatabaseIndex object>
class m_librarian.db.Language(**kw)[source]

Bases: sqlobject.main.SQLObject

classmethod byName(val, connection=None)
count
count_idx = <sqlobject.index.SODatabaseIndex object>
j = language
name
q = language
class sqlmeta(instance)

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'count': <IntCol b5df362cL count>, 'name': <UnicodeCol b5df354cL name>}
columnList = [<SOUnicodeCol name not null>, <SOIntCol count not null>]
columns = {'count': <SOIntCol count not null>, 'name': <SOUnicodeCol name not null>}
idName = 'id'
indexDefinitions = [<DatabaseIndex b5df364cL {'name': 'count_idx', 'columns': (<IntCol b5df362cL count>,)}>]
indexes = [<sqlobject.index.SODatabaseIndex object>]
joinDefinitions = []
joins = []
soClass

alias of m_librarian.db.Language

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'language'
class m_librarian.db.AuthorBook(**kw)[source]

Bases: sqlobject.main.SQLObject

author
authorID
author_idx = <sqlobject.index.SODatabaseIndex object>
book
bookID
book_idx = <sqlobject.index.SODatabaseIndex object>
j = author_book
main_idx = <sqlobject.index.SODatabaseIndex object>
q = author_book
class sqlmeta(instance)

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'authorID': <ForeignKey b5dde24cL author>, 'bookID': <ForeignKey b5dde28cL book>}
columnList = [<SOForeignKey authorID connected to Author not null>, <SOForeignKey bookID connected to Book not null>]
columns = {'authorID': <SOForeignKey authorID connected to Author not null>, 'bookID': <SOForeignKey bookID connected to Book not null>}
idName = 'id'
indexDefinitions = [<DatabaseIndex b5dde20cL {'name': 'author_idx', 'columns': (<ForeignKey b5dde24cL author>,)}>, <DatabaseIndex b5dde22cL {'name': 'book_idx', 'columns': (<ForeignKey b5dde28cL book>,)}>, <DatabaseIndex b5dde2ccL {'unique': True, 'name': 'main_idx', 'columns': (<ForeignKey b5dde24cL author>, <ForeignKey b5dde28cL book>)}>]
indexes = [<sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>]
joinDefinitions = []
joins = []
soClass

alias of m_librarian.db.AuthorBook

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'author_book'
class m_librarian.db.BookGenre(**kw)[source]

Bases: sqlobject.main.SQLObject

book
bookID
book_idx = <sqlobject.index.SODatabaseIndex object>
genre
genreID
genre_idx = <sqlobject.index.SODatabaseIndex object>
j = book_genre
main_idx = <sqlobject.index.SODatabaseIndex object>
q = book_genre
class sqlmeta(instance)

Bases: sqlobject.main.sqlmeta

childName = None
columnDefinitions = {'bookID': <ForeignKey b5ded38cL book>, 'genreID': <ForeignKey b5ded32cL genre>}
columnList = [<SOForeignKey bookID connected to Book not null>, <SOForeignKey genreID connected to Genre not null>]
columns = {'bookID': <SOForeignKey bookID connected to Book not null>, 'genreID': <SOForeignKey genreID connected to Genre not null>}
idName = 'id'
indexDefinitions = [<DatabaseIndex b5ded2acL {'name': 'book_idx', 'columns': (<ForeignKey b5ded38cL book>,)}>, <DatabaseIndex b5ded20cL {'name': 'genre_idx', 'columns': (<ForeignKey b5ded32cL genre>,)}>, <DatabaseIndex b5ded30cL {'unique': True, 'name': 'main_idx', 'columns': (<ForeignKey b5ded38cL book>, <ForeignKey b5ded32cL genre>)}>]
indexes = [<sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>, <sqlobject.index.SODatabaseIndex object>]
joinDefinitions = []
joins = []
soClass

alias of m_librarian.db.BookGenre

style = <sqlobject.styles.MixedCaseUnderscoreStyle object>
table = 'book_genre'
m_librarian.db.open_db(db_uri=None)[source]
m_librarian.db.init_db()[source]
m_librarian.db.insert_name(table, name, **kw)[source]
m_librarian.db.insert_author(surname, name, misc_name)[source]
m_librarian.db.update_counters(pbar_cb=None)[source]