Skip to content

GET myanimelist.net | Simple, Lightweight

License

Notifications You must be signed in to change notification settings

LeeEndl/mal.cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codacy Badge

including

#include <mal/mal.hpp>

basic usage

this function is used to GET anime/s then individually stored in anime. this ultimately makes it easier to access.

mal::search<anime>("one piece", 5, [](auto i) {
	...
});

manga...

mal::search<manga>("one piece", 5, [](auto i) {
	...
});

get website/API response time in seconds.

double palse = mal::api_palse();
...

NOTE: this is blocked code- meaning following code will be paused until this function finishes.