Metadata-Version: 2.4
Name: novel_updates_scraper
Version: 0.1.6
Summary: An API to query the novel updates website 
Author-email: Woody Aung <woodyaung2005@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/woodyistaken/novel_updates_scraper
Project-URL: Issues, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Requires-Dist: nodriver
Requires-Dist: curl_cffi
Dynamic: license-file

## Usage
Get data from novel updates website 

Example:
```python
from Search import Search
from Book import Book
from genre_constants import *

search=Search(included_genres=[GENRES["GENRE_COMEDY"]])
titles=search.get_titles(5)
Book.make_book(titles[0])
```
