https://github.com/ronsmits/omdbapi4j
very thin api to collect data from omdbapi.com
https://github.com/ronsmits/omdbapi4j
Last synced: 20 days 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 (over 11 years ago)
- Default Branch: develop
- Last Pushed: 2017-03-11T20:42:33.000Z (over 8 years ago)
- Last Synced: 2025-03-03T15:14:45.855Z (4 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
[](https://travis-ci.org/ronsmits/omdbapi4j)
[](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.