Commit 4afb4869 authored by 林檎's avatar 林檎

add languages field for BookMeta

parent 896dc046
...@@ -63,7 +63,8 @@ def default_meta(tmp_file_path, original_file_name, original_file_extension): ...@@ -63,7 +63,8 @@ def default_meta(tmp_file_path, original_file_name, original_file_extension):
description="", description="",
tags="", tags="",
series="", series="",
series_id="") series_id="",
languages=None)
def pdf_meta(tmp_file_path, original_file_name, original_file_extension): def pdf_meta(tmp_file_path, original_file_name, original_file_extension):
...@@ -91,7 +92,8 @@ def pdf_meta(tmp_file_path, original_file_name, original_file_extension): ...@@ -91,7 +92,8 @@ def pdf_meta(tmp_file_path, original_file_name, original_file_extension):
description=subject, description=subject,
tags="", tags="",
series="", series="",
series_id="") series_id="",
languages=None)
def pdf_preview(tmp_file_path, tmp_dir): def pdf_preview(tmp_file_path, tmp_dir):
......
...@@ -88,4 +88,5 @@ def get_epub_info(tmp_file_path, original_file_name, original_file_extension): ...@@ -88,4 +88,5 @@ def get_epub_info(tmp_file_path, original_file_name, original_file_extension):
description=epub_metadata['description'], description=epub_metadata['description'],
tags="", tags="",
series="", series="",
series_id="") series_id="",
languages=None)
...@@ -59,4 +59,5 @@ def get_fb2_info(tmp_file_path, original_file_extension): ...@@ -59,4 +59,5 @@ def get_fb2_info(tmp_file_path, original_file_extension):
description=description, description=description,
tags="", tags="",
series="", series="",
series_id="") series_id="",
languages=None)
...@@ -7,7 +7,7 @@ import hashlib ...@@ -7,7 +7,7 @@ import hashlib
from collections import namedtuple from collections import namedtuple
import book_formats import book_formats
BookMeta = namedtuple('BookMeta', 'file_path, extension, title, author, cover, description, tags, series, series_id') BookMeta = namedtuple('BookMeta', 'file_path, extension, title, author, cover, description, tags, series, series_id, languages')
""" """
:rtype: BookMeta :rtype: BookMeta
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment