mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
12 lines
239 B
Python
Executable File
12 lines
239 B
Python
Executable File
#!/usr/bin/python
|
|
# import zipfile as Zip
|
|
from pyShelf import InitFiles
|
|
from config import Config
|
|
from library import Catalogue
|
|
|
|
config = Config()
|
|
|
|
InitFiles(config.file_array)
|
|
Catalogue = Catalogue()
|
|
book_list = Catalogue.filter_books(1)
|