- Full model (books, images, tags, comments, users).
- Search for text query.
- Search by tag(s).
- Get random book.
- Configurable hosts.
- Support for custom
Client
(viapackage:http
). - Out-of-box HTTP proxy support (configurable via URI).
- Out-of-box User Agent override and Cookies support.
Using this module on web platform is experimental and has some drawbacks:
- You can't access nhentai directly due to CORS.
- Workaround: use CORS enabled mirror (for example you can use dev-mirror).
API#getRandomBook
doesn't work due to limitations ofXHR
.- Workaround: use
package:fetch_client
.
- Workaround: use
- Proxy isn't supported on web.
- User Agent override isn't supported on web.
- Cookies helper functions aren't supported on web.
Import the package:
import 'package:nhentai/nhentai.dart';
Create client instance:
final api = API();
Get the data:
/// Throws if book is not found, or parse failed, see docs.
final Book book = await api.getBook(421025);
// Short book summary
print(
'Book: $book\n'
'Artists: ${book.tags.artists.join(', ')}\n'
'Languages: ${book.tags.languages.join(', ')}\n'
'Cover: ${book.cover.getUrl(api: api)}\n'
'First page: ${book.pages.first.getUrl(api: api)}\n'
'First page thumbnail: ${book.pages.first.thumbnail.getUrl(api: api)}\n',
);
See more usage at example folder.
- ISC License