import os
from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \
- ForeignKey, DateCol, connectionForURI, sqlhub
+ ForeignKey, DateCol, connectionForURI, sqlhub, dberrors
from .config import ml_conf
try:
count = IntCol()
-class Genre(SQLObject):
- name = StringCol()
- title = UnicodeCol()
- count = IntCol()
-
-
class Book(SQLObject):
author = ForeignKey('Author')
genre = ForeignKey('Genre')
count = IntCol()
+class Genre(SQLObject):
+ name = StringCol()
+ title = UnicodeCol()
+ count = IntCol()
+
+
class Language(SQLObject):
name = StringCol()
count = IntCol()
+def init_db():
+ try:
+ Book.select()[0]
+ except IndexError: # Table exists but is empty
+ return
+ except dberrors.Error:
+ for table in Author, Extension, Genre, Language, Book:
+ table.createTable()
+ else:
+ return
+
+
if __name__ == '__main__':
print "DB dirs:", db_dirs
if db_uri:
],
packages=['m_librarian'],
package_data={'m_librarian': ['data/*.txt', 'data/genres_*.glst']},
- scripts=[],
+ scripts=['scripts/ml-initdb.py'],
requires=['SQLObject'],
)