Open Movie Database API

Very thin wrapper around http://www.omdbapi.com

License

License

GroupId

GroupId

org.ronsmits
ArtifactId

ArtifactId

omdbapi
Last Version

Last Version

0.5.0
Release Date

Release Date

Type

Type

jar
Description

Description

Open Movie Database API
Very thin wrapper around http://www.omdbapi.com
Source Code Management

Source Code Management

https://github.com/ronsmits/omdbapi4j

Download omdbapi

How to add to project

<!-- https://jarcasting.com/artifacts/org.ronsmits/omdbapi/ -->
<dependency>
    <groupId>org.ronsmits</groupId>
    <artifactId>omdbapi</artifactId>
    <version>0.5.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.ronsmits/omdbapi/
implementation 'org.ronsmits:omdbapi:0.5.0'
// https://jarcasting.com/artifacts/org.ronsmits/omdbapi/
implementation ("org.ronsmits:omdbapi:0.5.0")
'org.ronsmits:omdbapi:jar:0.5.0'
<dependency org="org.ronsmits" name="omdbapi" rev="0.5.0">
  <artifact name="omdbapi" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.ronsmits', module='omdbapi', version='0.5.0')
)
libraryDependencies += "org.ronsmits" % "omdbapi" % "0.5.0"
[org.ronsmits/omdbapi "0.5.0"]

Dependencies

compile (5)

Group / Artifact Type Version
org.json : json jar 20090211
org.apache.httpcomponents : httpclient jar 4.2.2
junit : junit jar 4.11
com.fasterxml.jackson.core : jackson-core jar 2.1.2
com.fasterxml.jackson.module : jackson-module-jaxb-annotations jar 2.1.2

Project Modules

There are no modules declared in this project.

Build Status Stories in Ready

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

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

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

List<SearchResuls> 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.

Versions

Version
0.5.0