Compare commits

..

No commits in common. "a5ceb76e4356c778d3f05b6130ee1dfaa2f79534" and "007811bde6aa7a1dbc41e331a2f61cc220ecfcd3" have entirely different histories.

2 changed files with 13 additions and 10 deletions

View File

@ -2,7 +2,7 @@
"books": [
{
"name": "1984",
"author": "George Orwell",
"author": "George Orwell"
"description": "1984 est un roman dystopique de l'écrivain britannique George Orwell. Publié le 8 juin 1949 par Secker & Warburg, il s'agit du neuvième et dernier livre d'Orwell achevé de son vivant",
"image": "1984.jpg",
"review": "ct pas mal",

21
main.py
View File

@ -4,11 +4,12 @@ from Book import Book
# Opening JSON file
with open('constructor.json', encoding='utf-8') as f:
data = json.load(f)
with open('style.css', encoding='utf-8') as f:
style = f.read()
f = open('constructor.json', encoding='utf-8')
data = json.load(f)
f.close()
f = open("style.css")
style = f.read()
f.close()
books = data['books']
html = ""
@ -17,11 +18,13 @@ for book_data in books:
book = Book(book_data["name"], book_data["author"], book_data["description"], book_data["image"], book_data["review"], book_data["release_date"], book_data["reading_date"])
html += book.to_html()
with open('cast.html', encoding='utf-8') as f:
text = f.read().replace("{{books}}", html).replace("{{style}}", style)
f = open("cast.html")
text = f.read().replace("{{books}}", html).replace("{{style}}", style)
f.close()
if len(sys.argv) > 1:
with open(sys.argv[1], "w", encoding='utf-8') as f:
f.write(text)
f = open(sys.argv[1], "w", encoding='utf-8')
f.write(text)
f.close()
else:
print(text)