Class: Character
Class Method Summary collapse
-
.listing(keyword, sort = 1, page = 1) ⇒ Object
List all doujinshi of the page of a given character.
Methods inherited from Tag
Class Method Details
.listing(keyword, sort = 1, page = 1) ⇒ Object
List all doujinshi of the page of a given character
476 477 478 479 480 481 482 483 |
# File 'lib/nhentai-api.rb', line 476 def self.listing(keyword, sort = 1, page = 1) keyword.tr!(' ', '-') sort = sort == 1 ? '' : 'popular' client = Net::HTTP.get_response(URI("https://nhentai.net/character/#{keyword}/#{sort}?page=#{page}")) res = client.body.split(%r{<div class="gallery".+?>(.+)</div>}).select { |line| line.include?('<a href="/g/') } (res) end |