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

https://github.com/pjones/themoviedb

Simple Haskell library that provides functions for retrieving movie metadata from TheMovieDB
https://github.com/pjones/themoviedb

Last synced: 2 months ago
JSON representation

Simple Haskell library that provides functions for retrieving movie metadata from TheMovieDB

Awesome Lists containing this project

README

        

# The Movie Database (TMDb) API for Haskell

[![tests](https://github.com/pjones/themoviedb/workflows/tests/badge.svg)](https://github.com/pjones/themoviedb/actions)
[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/pjones/themoviedb?label=release)](https://github.com/pjones/themoviedb/releases)
[![Hackage](https://img.shields.io/hackage/v/themoviedb)](https://hackage.haskell.org/package/themoviedb)

This is a simple library that provides functions for retrieving
metadata from the [TMDb][] API. To use this library you need to
request an API key from [TMDb][]. Follow the directions on the
[API][] page.

[TMDb]: http://themoviedb.org
[API]: http://docs.themoviedb.apiary.io

## Documentation

See the [Network.API.TheMovieDB][] module for complete documentation.

[Network.API.TheMovieDB]: https://hackage.haskell.org/package/themoviedb/docs/Network-API-TheMovieDB.html

## Example

There's an [example](example/Main.hs) application in the `example` directory.
Surprising, I know.