Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ronsmits/omdbapi4j

very thin api to collect data from omdbapi.com
https://github.com/ronsmits/omdbapi4j

Last synced: 1 day ago
JSON representation

very thin api to collect data from omdbapi.com

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/ronsmits/omdbapi4j.png?branch=develop)](https://travis-ci.org/ronsmits/omdbapi4j)
[![Stories in Ready](https://badge.waffle.io/ronsmits/omdbapi4j.png?label=ready&title=Ready)](http://waffle.io/ronsmits/omdbapi4j)

This is a very thin layer around the http://omdbapi.com rest services. Everything is build around the Omdb object:

List results = new Omdb().search("Star Wars");

Will return at most 10 results of that have star wars in the title.

List results = new Omdb().year(1982).type(MovieType.movie).search("blade runner");

Will search for all entries from the year `1982` with type `MovieType.movie` and title `blade runner`

See the test cases for more examples.