Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
myanimelists
Advanced tools
A web scraper for myanimelist.net allowing you to recover any information on your favorite animes or mangas.
Terminal:
$ npm install --save myanimelists
Node.js:
// Load the full build
const myanimelist = require('myanimelists');
// Load the method build
const { getSeasons } = require('myanimelists');
That method return a list of anime or manga in connection with the name specified.
Params | Type | Description |
---|---|---|
name | string | The name or a keyword in connection with the anime or manga |
type | string | 'manga' or 'anime', default value equal to 'anime' |
const { searchResultsWhereNameAndType } = require('myanimelists');
searchResultsWhereNameAndType('meagalobox', 'anime')
.then(result => console.log(result))
.catch(error => console.log(error));
That method get all informations about the anime specified.
Params | Type | Description |
---|---|---|
name | string | The name of the anime to search, the best match will be returned |
const { getInfoFromName } = require('myanimelists');
getInfoFromName('Samurai Champloo')
.then(result => console.log(result))
.catch(error => console.log(error));
That method get all informations about the anime specified.
Params | Type | Description |
---|---|---|
url | string | The URL of the anime |
const { searchResultsWhereNameAndType } = require('myanimelists');
searchResultsWhereNameAndType('https://myanimelist.net/anime/205/Samurai_Champloo', 'anime')
.then(result => console.log(result))
.catch(error => console.log(error));
That method get the list of anime, OVAs, ONAs, movies and specials released or planned to be released during the season of the specified year.
Params | Type | Description |
---|---|---|
year | number | The year |
season | string | The season must be summer , fall , winter or spring |
const { getSeasons } = require('myanimelists');
getSeasons(2018, 'summer')
.then(result => console.log(result))
.catch(error => console.log(error));
That method get the list of all episode of the anime specified.
Params | Type | Description |
---|---|---|
year | Object or string | If an object, it must have a name and a id properties, else just pass the name of the anime |
const { getEpisodesList } = require('myanimelists');
// If param is a string
const obj = 'Samurai Champloo';
getEpisodesList(obj)
.then(result => console.log(result))
.catch(error => console.log(error));
// If param is an object
const obj = { id: 205, name: 'Samurai Champloo' };
getEpisodesList(obj)
.then(result => console.log(result))
.catch(error => console.log(error));
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
myanimelist.net web scraper
We found that myanimelists demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.