mirror of
https://github.com/janeczku/calibre-web
synced 2025-02-03 12:49:13 +00:00
Fixes for grab metadata in python
This commit is contained in:
parent
94da61c57e
commit
0d247fef6a
37
cps/metadata_provider/comicvine.py
Normal file
37
cps/metadata_provider/comicvine.py
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
||||||
|
# Copyright (C) 2021 OzzieIsaacs
|
||||||
|
#
|
||||||
|
# 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 requests
|
||||||
|
from cps.services.Metadata import Metadata
|
||||||
|
|
||||||
|
apikey = "57558043c53943d5d1e96a9ad425b0eb85532ee6"
|
||||||
|
|
||||||
|
class ComicVine(Metadata):
|
||||||
|
__name__ = "ComicVine"
|
||||||
|
|
||||||
|
def search(self, query):
|
||||||
|
if self.active:
|
||||||
|
headers = {
|
||||||
|
'User-Agent': 'Not Evil Browser' # ,
|
||||||
|
}
|
||||||
|
result = requests.get("https://comicvine.gamespot.com/api/search?api_key="
|
||||||
|
+ apikey + "&resources=issue&query=" + query + "&sort=name:desc&format=json", headers=headers)
|
||||||
|
return [result.json()['results']]
|
||||||
|
|
||||||
|
|
@ -20,12 +20,12 @@
|
|||||||
import requests
|
import requests
|
||||||
from cps.services.Metadata import Metadata
|
from cps.services.Metadata import Metadata
|
||||||
|
|
||||||
class Toogle(Metadata):
|
class Google(Metadata):
|
||||||
__name__ = "Google"
|
__name__ = "Google"
|
||||||
|
|
||||||
def search(self, query):
|
def search(self, query):
|
||||||
if self.active:
|
if self.active:
|
||||||
return [1]
|
result = requests.get("https://www.googleapis.com/books/v1/volumes?q="+query.replace(" ","+"))
|
||||||
return []
|
return [result.json()['items']]
|
||||||
|
|
||||||
|
|
50
cps/metadata_provider/scholar.py
Normal file
50
cps/metadata_provider/scholar.py
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
||||||
|
# Copyright (C) 2021 OzzieIsaacs
|
||||||
|
#
|
||||||
|
# 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/>.
|
||||||
|
|
||||||
|
from scholarly import scholarly
|
||||||
|
|
||||||
|
import json
|
||||||
|
from cps.services.Metadata import Metadata
|
||||||
|
#try:
|
||||||
|
|
||||||
|
#except ImportError:
|
||||||
|
# have_scholar = False
|
||||||
|
# pass
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class scholar(Metadata):
|
||||||
|
__name__ = "ComicVine"
|
||||||
|
|
||||||
|
def search(self, query):
|
||||||
|
if self.active:
|
||||||
|
if True:
|
||||||
|
scholar_gen = scholarly.search_pubs(' '.join(query.split('+')))
|
||||||
|
i = 0
|
||||||
|
result = []
|
||||||
|
for publication in scholar_gen:
|
||||||
|
del publication['source']
|
||||||
|
result.append(publication)
|
||||||
|
i += 1
|
||||||
|
if (i >= 10):
|
||||||
|
break
|
||||||
|
return json.dumps(result)
|
||||||
|
return "[]"
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -17,49 +17,45 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from __future__ import division, print_function, unicode_literals
|
from __future__ import division, print_function, unicode_literals
|
||||||
import sys
|
from cps.services.Metadata import Metadata
|
||||||
import datetime
|
|
||||||
from functools import wraps
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from flask import Blueprint, request, render_template, Response, g, make_response, abort
|
from flask import Blueprint
|
||||||
from flask_login import login_required
|
from flask_login import login_required
|
||||||
from flask_login import current_user
|
|
||||||
from sqlalchemy.sql.expression import func, text, or_, and_, true
|
|
||||||
from werkzeug.security import check_password_hash
|
|
||||||
|
|
||||||
from . import constants, logger, config, db, calibre_db, ub, services, get_locale, isoLanguages
|
from . import constants, logger
|
||||||
# from .metadata_provider
|
from os.path import basename, isfile
|
||||||
|
import importlib
|
||||||
|
import sys, inspect
|
||||||
|
|
||||||
opds = Blueprint('metadata', __name__)
|
opds = Blueprint('metadata', __name__)
|
||||||
|
|
||||||
log = logger.create()
|
log = logger.create()
|
||||||
|
|
||||||
|
new_list = list()
|
||||||
#for module in os.listdir(os.join(constants.BASE_DIR, "metadata_provider")):
|
|
||||||
# if module == '__init__.py' or module[-3:] != '.py':
|
|
||||||
# continue
|
|
||||||
# __import__(module[:-3], locals(), globals())
|
|
||||||
#del module
|
|
||||||
|
|
||||||
from os.path import basename, isfile
|
|
||||||
# import glob
|
|
||||||
meta_dir = os.path.join(constants.BASE_DIR, "cps", "metadata_provider")
|
meta_dir = os.path.join(constants.BASE_DIR, "cps", "metadata_provider")
|
||||||
modules = os.listdir(os.path.join(constants.BASE_DIR, "cps", "metadata_provider")) #glob.glob(join(dirname(__file__), "*.py"))
|
modules = os.listdir(os.path.join(constants.BASE_DIR, "cps", "metadata_provider")) #glob.glob(join(dirname(__file__), "*.py"))
|
||||||
__all__ = [ basename(f)[:-3] for f in modules if isfile(os.path.join(meta_dir, f)) and not f.endswith('__init__.py')]
|
for f in modules:
|
||||||
|
if isfile(os.path.join(meta_dir, f)) and not f.endswith('__init__.py'):
|
||||||
import importlib
|
a = basename(f)[:-3]
|
||||||
for a in __all__:
|
try:
|
||||||
importlib.import_module("cps.metadata_provider." + a)
|
importlib.import_module("cps.metadata_provider." + a)
|
||||||
|
new_list.append(a)
|
||||||
|
except ImportError:
|
||||||
|
log.error("Import error for metadata source: {}".format(a))
|
||||||
|
pass
|
||||||
|
|
||||||
import sys, inspect
|
def list_classes(provider_list):
|
||||||
def print_classes():
|
classes = list()
|
||||||
for a in __all__:
|
for element in provider_list:
|
||||||
for name, obj in inspect.getmembers(sys.modules["cps.metadata_provider." + a]):
|
for name, obj in inspect.getmembers(sys.modules["cps.metadata_provider." + element]):
|
||||||
if inspect.isclass(obj):
|
if inspect.isclass(obj) and name != "Metadata" and issubclass(obj, Metadata):
|
||||||
print(obj)
|
classes.append(obj())
|
||||||
|
return classes
|
||||||
|
|
||||||
print_classes()
|
cl = list_classes(new_list)
|
||||||
|
for c in cl:
|
||||||
|
print(c.search("Walking"))
|
||||||
|
|
||||||
@opds.route("/metadata/provider")
|
@opds.route("/metadata/provider")
|
||||||
@login_required
|
@login_required
|
||||||
|
@ -25,8 +25,3 @@ class Metadata():
|
|||||||
|
|
||||||
def set_status(self, state):
|
def set_status(self, state):
|
||||||
self.active = state
|
self.active = state
|
||||||
|
|
||||||
def search(self, query):
|
|
||||||
if self.active:
|
|
||||||
return [1]
|
|
||||||
return []
|
|
||||||
|
Loading…
Reference in New Issue
Block a user