Compare commits
2 Commits
2ca297e68c
...
007811bde6
Author | SHA1 | Date | |
---|---|---|---|
007811bde6 | |||
5177238a53 |
4
Book.py
4
Book.py
@ -1,18 +1,20 @@
|
||||
class Book:
|
||||
|
||||
def __init__(self, name: str, description: str, image: str, review: str, release_date: str, reading_date: str) -> None:
|
||||
def __init__(self, name: str, author: str, description: str, image: str, review: str, release_date: str, reading_date: str) -> None:
|
||||
self.name: str = name
|
||||
self.description: str = description
|
||||
self.image: str = image
|
||||
self.review: str = review
|
||||
self.release_date: str = release_date
|
||||
self.reading_date: str = reading_date
|
||||
self.author: str = author
|
||||
|
||||
def to_html(self) -> str:
|
||||
return f"""
|
||||
<tr>
|
||||
<td class="image-div"><img src="img/{self.image}"></td>
|
||||
<td class="namedesc-div">
|
||||
<p class="author">{self.author}</p>
|
||||
<p class="name">{self.name}</p>
|
||||
<p class="description">{self.description}</p>
|
||||
<p class="release-date">{self.release_date}</p>
|
||||
|
@ -2,7 +2,7 @@
|
||||
A script to generate a static book review page
|
||||
|
||||
## images
|
||||
|
||||
![](./screenshots/1.png)
|
||||
## usage
|
||||
|
||||
- fill the ![constructor.json](./constructor.json) like the ![constructor.json](./constructor_example.json)
|
||||
|
@ -2,6 +2,7 @@
|
||||
"books": [
|
||||
{
|
||||
"name": "1984",
|
||||
"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",
|
||||
|
2
main.py
2
main.py
@ -15,7 +15,7 @@ books = data['books']
|
||||
html = ""
|
||||
|
||||
for book_data in books:
|
||||
book = Book(book_data["name"], 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()
|
||||
|
||||
f = open("cast.html")
|
||||
|
BIN
screenshots/1.png
Normal file
BIN
screenshots/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 329 KiB |
Loading…
Reference in New Issue
Block a user