Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ronsmits/omdbapi4j
- Owner: ronsmits
- Created: 2014-03-03T09:45:08.000Z (almost 11 years ago)
- Default Branch: develop
- Last Pushed: 2017-03-11T20:42:33.000Z (almost 8 years ago)
- Last Synced: 2024-11-14T08:50:16.338Z (2 months ago)
- Language: Java
- Size: 47.9 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.