Manga Classes
pymoe.manga.get
pymoe.manga.get.anilist
settings = {'header': {'Content-Type': 'application/json', 'User-Agent': 'Pymoe (github.com/ccubed/PyMoe)', 'Accept': 'application/json'}, 'apiurl': 'https://graphql.anilist.co'}
module-attribute
character(item_id)
Anilist does not separate characters by anime/manga. This is simply a reference to the character function that already exists.
manga(item_id)
The function to retrieve a manga's details. I really couldn't think of another name for this.
Source code in pymoe\manga\get\anilist.py
staff(item_id)
Anilist does not separate staff by anime/manga. This is simply a reference to the staff function that already exists.
pymoe.manga.get.kitsu
settings = {'header': {'Content-Type': 'application/vnd.api+json', 'User-Agent': 'Pymoe (github.com/ccubed/PyMoe)', 'Accept': 'application/vnd.api+json'}, 'apiurl': 'https://kitsu.io/api/edge'}
module-attribute
manga(item_id)
Get information on the given manga by ID.
PARAMETER | DESCRIPTION |
---|---|
item_id |
The ID of the manga you want information on
TYPE:
|
Source code in pymoe\manga\get\kitsu.py
pymoe.manga.get.mangaupdates
settings = {'header': {'Content-Type': 'application/json', 'User-Agent': 'Pymoe (github.com/ccubed/PyMoe)', 'Accept': 'application/json'}, 'apiurl': 'https://api.mangaupdates.com/v1/'}
module-attribute
author(authorId)
Get a specific author by ID
PARAMETER | DESCRIPTION |
---|---|
authorId |
The author ID to get data for.
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
genres()
Get a list of all genres. Note that this literally returns all genres as a list of dictionaries.
Source code in pymoe\manga\get\mangaupdates.py
group(groupId)
Get a specific group by ID
PARAMETER | DESCRIPTION |
---|---|
groupId |
The group ID to get data for.
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
groupsByManga(seriesId)
Get a list of groups that have worked on a series
PARAMETER | DESCRIPTION |
---|---|
seriesId |
The Series to find groups for
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
manga(seriesId)
Get a specific series by series ID.
PARAMETER | DESCRIPTION |
---|---|
seriesId |
The Series ID to get data for.
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
mangaByAuthor(authorId)
Get a list of series an author has worked on
PARAMETER | DESCRIPTION |
---|---|
authorId |
The author ID to get data for.
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
mangaReleaseFeed(seriesId)
Get an RSS Feed of Releases for a specific series
PARAMETER | DESCRIPTION |
---|---|
seriesId |
The Series ID to get a feed for
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
publisher(publisherId)
Get a specific publisher by ID
PARAMETER | DESCRIPTION |
---|---|
publisherId |
The Publisher ID to get data for.
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
releasesFeed()
Get an RSS Feed of Releases for the entire site
Source code in pymoe\manga\get\mangaupdates.py
review(reviewId)
Get a specific review by ID
PARAMETER | DESCRIPTION |
---|---|
reviewId |
The Review ID to get data for.
TYPE:
|
Source code in pymoe\manga\get\mangaupdates.py
pymoe.manga.search
pymoe.manga.search.anilist
settings = {'header': {'Content-Type': 'application/json', 'User-Agent': 'Pymoe (github.com/ccubed/PyMoe)', 'Accept': 'application/json'}, 'apiurl': 'https://graphql.anilist.co'}
module-attribute
characters(item_id)
Anilist does not separate characters by anime/manga. This is simply a reference to the character function that already exists.
manga(term, page=1, perPage=3)
Search for manga that match term in the kitsu api.
PARAMETER | DESCRIPTION |
---|---|
term |
Search Term
TYPE:
|
page |
Which page of results?
TYPE:
|
perPage |
How many results per page?
TYPE:
|
Source code in pymoe\manga\search\anilist.py
staff(item_id)
Anilist does not separate staff by anime/manga. This is simply a reference to the staff function that already exists.
pymoe.manga.search.kitsu
settings = {'header': {'Content-Type': 'application/vnd.api+json', 'User-Agent': 'Pymoe (github.com/ccubed/PyMoe)', 'Accept': 'application/vnd.api+json'}, 'apiurl': 'https://kitsu.io/api/edge'}
module-attribute
manga(term)
Search for manga that match the search term in the Kitsu API.
PARAMETER | DESCRIPTION |
---|---|
term |
Search Term
TYPE:
|
Source code in pymoe\manga\search\kitsu.py
pymoe.manga.search.mangaupdates
settings = {'header': {'Content-Type': 'application/json', 'User-Agent': 'Pymoe (github.com/ccubed/PyMoe)', 'Accept': 'application/json'}, 'apiurl': 'https://api.mangaupdates.com/v1/'}
module-attribute
authors(title, options=None, page=1, perPage=5)
Search for Authors that match the title. Options is an optional dictionary containing additional search options to pass.
PARAMETER | DESCRIPTION |
---|---|
title |
The name of the Author to find
TYPE:
|
options |
An optional dictionary of additional search criteria
TYPE:
|
page |
Which page of results
TYPE:
|
perPage |
Results per page. Note that the only acceptable values are 5,10,15,25,30,40,50,75,100
TYPE:
|
Source code in pymoe\manga\search\mangaupdates.py
categories(title, options=None, page=1, perPage=5)
Search for Categories that match the title. Options is an optional dictionary containing additional search options to pass.
PARAMETER | DESCRIPTION |
---|---|
title |
The name of the Category to find
TYPE:
|
options |
An optional dictionary of additional search criteria
TYPE:
|
page |
Which page of results
TYPE:
|
perPage |
Results per page. Note that the only acceptable values are 5,10,15,25,30,40,50,75,100
TYPE:
|
Source code in pymoe\manga\search\mangaupdates.py
groups(title, options=None, page=1, perPage=5)
Search for Groups that match the title. Groups are scanlators, uploaders, raw providers, etc. Options is an optional dictionary containing additional search options to pass.
PARAMETER | DESCRIPTION |
---|---|
title |
The name of the group to find
TYPE:
|
options |
An optional dictionary of additional search criteria
TYPE:
|
page |
Which page of results
TYPE:
|
perPage |
Results per page. Note that the only acceptable values are 5,10,15,25,30,40,50,75,100
TYPE:
|
Source code in pymoe\manga\search\mangaupdates.py
manga(title, options=None, page=1, perPage=5)
Search for a series with title on Mangaupdates. Options is an optional dictionary containing additional search options to pass.
PARAMETER | DESCRIPTION |
---|---|
title |
The title to search for
TYPE:
|
options |
An optional dictionary of additional search criteria
TYPE:
|
page |
Which page of results
TYPE:
|
perPage |
Results per page. Note that the only acceptable values are 5,10,15,25,30,40,50,75,100
TYPE:
|
Source code in pymoe\manga\search\mangaupdates.py
publishers(title, options=None, page=1, perPage=5)
Search for Publishers that match the title. Options is an optional dictionary containing additional search options to pass.
PARAMETER | DESCRIPTION |
---|---|
title |
The name of the publisher to find
TYPE:
|
options |
An optional dictionary of additional search criteria
TYPE:
|
page |
Which page of results
TYPE:
|
perPage |
Results per page. Note that the only acceptable values are 5,10,15,25,30,40,50,75,100
TYPE:
|
Source code in pymoe\manga\search\mangaupdates.py
releases(seriesId, options=None, page=1, perPage=5)
Search for releases for a specific series ID. Options is an optional dictionary containing additional search options to pass.
PARAMETER | DESCRIPTION |
---|---|
seriesId |
The Series ID to find releases for
TYPE:
|
options |
An optional dictionary of additional search criteria
TYPE:
|
page |
Which page of results
TYPE:
|
perPage |
Results per page. Note that the only acceptable values are 5,10,15,25,30,40,50,75,100
TYPE:
|
Source code in pymoe\manga\search\mangaupdates.py
reviews(seriesId, options=None, page=1, perPage=5)
Search for reviews for a given series ID. Options is an optional dictionary containing additional search options to pass.
PARAMETER | DESCRIPTION |
---|---|
seriesId |
The ID of the series to get reviews for
TYPE:
|
options |
An optional dictionary of additional search criteria
TYPE:
|
page |
Which page of results
TYPE:
|
perPage |
Results per page. Note that the only acceptable values are 5,10,15,25,30,40,50,75,100
TYPE:
|