Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -25,13 +25,13 @@ Each novel is a dict structured as follows:
|
|
25 |
|
26 |
```
|
27 |
class Novel:
|
28 |
-
book_title
|
29 |
-
book_author
|
30 |
-
book_tag
|
31 |
-
book_intro
|
32 |
-
collect
|
33 |
-
popularity
|
34 |
-
book_chapter
|
35 |
|
36 |
class Chapter:
|
37 |
chapter_title: str
|
|
|
25 |
|
26 |
```
|
27 |
class Novel:
|
28 |
+
book_title: str
|
29 |
+
book_author: str
|
30 |
+
book_tag: list[str]
|
31 |
+
book_intro: str
|
32 |
+
collect: int # 收藏
|
33 |
+
popularity: int # 热度
|
34 |
+
book_chapter: list[Chapter] # Main content
|
35 |
|
36 |
class Chapter:
|
37 |
chapter_title: str
|