2017-01-29 20:06:08 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-07-13 18:45:48 +00:00
|
|
|
# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
2022-04-26 09:04:00 +00:00
|
|
|
# Copyright (C) 2022 OzzieIsaacs
|
2019-07-13 18:45:48 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import os
|
2022-04-26 09:04:00 +00:00
|
|
|
import sys
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2023-02-12 12:10:00 +00:00
|
|
|
# Add local path to sys.path, so we can import cps
|
2022-04-29 16:16:37 +00:00
|
|
|
path = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
sys.path.insert(0, path)
|
|
|
|
|
|
|
|
from cps.main import main
|
2021-03-20 10:32:50 +00:00
|
|
|
|
2022-04-26 09:04:00 +00:00
|
|
|
if __name__ == '__main__':
|
2022-04-29 16:16:37 +00:00
|
|
|
main()
|
2021-03-20 10:32:50 +00:00
|
|
|
|
2018-07-09 16:47:36 +00:00
|
|
|
|
|
|
|
|