Less complexity for download_data_openlibrary
This commit is contained in:
parent
778e3239a4
commit
939efe01a0
|
@ -11,21 +11,19 @@ sleep 2
|
||||||
python manage.py migrate
|
python manage.py migrate
|
||||||
python manage.py collectstatic --no-input
|
python manage.py collectstatic --no-input
|
||||||
|
|
||||||
python manage.py runserver 0.0.0.0:8000
|
|
||||||
|
|
||||||
# harakiri parameter respawns processes taking more than 20 seconds
|
# harakiri parameter respawns processes taking more than 20 seconds
|
||||||
# max-requests parameter respawns processes after serving 5000 requests
|
# max-requests parameter respawns processes after serving 5000 requests
|
||||||
# vacuum parameter cleans up when stopped
|
# vacuum parameter cleans up when stopped
|
||||||
#uwsgi --chdir="$(pwd)" \
|
uwsgi --chdir="$(pwd)" \
|
||||||
# --module=med.wsgi:application \
|
--module=med.wsgi:application \
|
||||||
# --env DJANGO_SETTINGS_MODULE=med.settings \
|
--env DJANGO_SETTINGS_MODULE=med.settings \
|
||||||
# --master \
|
--master \
|
||||||
# --pidfile="$(pwd)/uwsgi.pid" \
|
--pidfile="$(pwd)/uwsgi.pid" \
|
||||||
# --socket="$(pwd)/uwsgi.sock" \
|
--socket="$(pwd)/uwsgi.sock" \
|
||||||
# --processes=5 \
|
--processes=5 \
|
||||||
# --chmod-socket=600 \
|
--chmod-socket=600 \
|
||||||
# --harakiri=20 \
|
--harakiri=20 \
|
||||||
# --max-requests=5000 \
|
--max-requests=5000 \
|
||||||
# --vacuum \
|
--vacuum \
|
||||||
# --daemonize="$(pwd)/uwsgi.log" \
|
--daemonize="$(pwd)/uwsgi.log" \
|
||||||
# --protocol=fastcgi
|
--protocol=fastcgi
|
|
@ -48,6 +48,11 @@ class MediaAdminForm(ModelForm):
|
||||||
data = data['ISBN:' + isbn]
|
data = data['ISBN:' + isbn]
|
||||||
if 'url' in data:
|
if 'url' in data:
|
||||||
# Fill the data
|
# Fill the data
|
||||||
|
self.parse_data_openlibrary(data)
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def parse_data_openlibrary(self, data):
|
||||||
self.cleaned_data['external_url'] = data['url']
|
self.cleaned_data['external_url'] = data['url']
|
||||||
if 'title' in data:
|
if 'title' in data:
|
||||||
self.cleaned_data['title'] = data['title']
|
self.cleaned_data['title'] = data['title']
|
||||||
|
@ -76,8 +81,6 @@ class MediaAdminForm(ModelForm):
|
||||||
author_obj = Auteur.objects.get_or_create(
|
author_obj = Auteur.objects.get_or_create(
|
||||||
name=author['name'])[0]
|
name=author['name'])[0]
|
||||||
self.cleaned_data['authors'].append(author_obj)
|
self.cleaned_data['authors'].append(author_obj)
|
||||||
return True
|
|
||||||
return False
|
|
||||||
|
|
||||||
def clean(self):
|
def clean(self):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -9,6 +9,6 @@ python-stdnum==1.10
|
||||||
djangorestframework==3.9.2
|
djangorestframework==3.9.2
|
||||||
pyyaml==3.13
|
pyyaml==3.13
|
||||||
coreapi==2.3.3
|
coreapi==2.3.3
|
||||||
psycopg2
|
psycopg2==2.7.7
|
||||||
uwsgi==2.0.18
|
uwsgi==2.0.18
|
||||||
mysqlclient==1.4.3
|
mysqlclient==1.4.3
|
||||||
|
|
Loading…
Reference in New Issue