mrzjy commited on
Commit
08de009
1 Parent(s): b21df24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -25,13 +25,13 @@ Each novel is a dict structured as follows:
25
 
26
  ```
27
  class Novel:
28
- book_title # str
29
- book_author # str
30
- book_tag # list[str]
31
- book_intro # str
32
- collect # integer (收藏)
33
- popularity # integer (热度)
34
- book_chapter # list[Chapter] (Main content)
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