popcorn_api 1.1.5 copy "popcorn_api: ^1.1.5" to clipboard
popcorn_api: ^1.1.5 copied to clipboard

An easy way to get data from the Popcorn Time API. Documentation is available at https://popcorn-api.js.org/

example/Main.dart

import "package:popcorn_api/src/Popcorn.dart";
int main(){
  // get a random movie
  Popcorn.random("movie").then((c)async{
     print(c.first.item);
  });
  // get animes with keyword ga, and get a random result
  Popcorn.animes.search({
    "keywords":"ga"
  }).then((c)async{
    print(c.random.item);
  });
  // the same process work with movies
  Popcorn.movies.search({
    "keywords":"ga"
  }).then((c)async{
    print(c.random.item);
  });
  //Get result of shows, and get it array
  Popcorn.shows.search({
    "keywords":"league"
  }).then((c)async{
    print(c.array);
  });
  //Params to search() function
  Popcorn.shows.search({
    "keywords":"keywords",
    "page":1,
    "sort":"rating",
    "genre":"all"
  });
  return 0;
}
0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

An easy way to get data from the Popcorn Time API. Documentation is available at https://popcorn-api.js.org/

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on popcorn_api