You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
437 B

import ebookmeta
import sys
numarg = len(sys.argv)
if numarg != 2:
print("Error. Número de argumentos no válido")
else:
print("Procesando el libro: ", sys.argv[1])
meta = ebookmeta.get_metadata(sys.argv[1])
print("Título: ", meta.title)
print("Idioma: ", meta.lang)
for autor in meta.author_list:
print("Autor: ", autor)
for tag in meta.tag_list:
print("Tag: ", tag)
print("Autores: ", meta.author_list_to_string())