Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 890 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 890 Bytes

Travis CI Code Climate

Usage

# get first page of animes ordered by recently updated
MalParser::Catalog::Page.call type: 'anime', page: 0, sorting: 'updated_at'

# get first page of animes ordered by name
MalParser::Catalog::Page.call type: 'manga', page: 0, sorting: 'name'

# get anime id=1
MalParser::Entry::Anime.call 1

# get anime id=1 characters
MalParser::Entry::Characters.call 1, :anime

# get anime id=1 recommendations
MalParser::Entry::Recommendations.call 1, :anime

# get manga id=1
MalParser::Entry::Manga.call 1

# get character id=1
MalParser::Entry::Character.call 1

# get person id=1
MalParser::Entry::Person.call 1