Compare commits

...

2 Commits

Author SHA1 Message Date
a5ceb76e43 use with to simplify the code 2024-08-06 14:49:58 +02:00
e26fced271 fix: typo 2024-08-06 14:48:28 +02:00
2 changed files with 10 additions and 13 deletions

View File

@ -2,7 +2,7 @@
"books": [ "books": [
{ {
"name": "1984", "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", "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", "image": "1984.jpg",
"review": "ct pas mal", "review": "ct pas mal",

21
main.py
View File

@ -4,12 +4,11 @@ from Book import Book
# Opening JSON file # Opening JSON file
f = open('constructor.json', encoding='utf-8') with open('constructor.json', encoding='utf-8') as f:
data = json.load(f) data = json.load(f)
f.close()
f = open("style.css") with open('style.css', encoding='utf-8') as f:
style = f.read() style = f.read()
f.close()
books = data['books'] books = data['books']
html = "" html = ""
@ -18,13 +17,11 @@ 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"]) 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() html += book.to_html()
f = open("cast.html") with open('cast.html', encoding='utf-8') as f:
text = f.read().replace("{{books}}", html).replace("{{style}}", style) text = f.read().replace("{{books}}", html).replace("{{style}}", style)
f.close()
if len(sys.argv) > 1: if len(sys.argv) > 1:
f = open(sys.argv[1], "w", encoding='utf-8') with open(sys.argv[1], "w", encoding='utf-8') as f:
f.write(text) f.write(text)
f.close()
else: else:
print(text) print(text)