taingra / orgmdb.el

An OMDb API client for Emacs with some org-mode related convenience functions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

orgmdb.el

I keep my watchlist in org-mode and this package makes metadata retrieving pretty easy through OMDb. The package is quite immature, I just copied functions from my Emacs config and called it a package.

Installing

Download the orgmdb.el and put it into your load path, then you can use it by (require 'orgmdb).

Another option is to use use-package and quelpa:

(use-package orgmdb
  :ensure t
  :quelpa (orgmdb
           :fetcher github
           :repo "isamert/orgmdb.el"))

Demo

./orgmdb.gif

Usage

You need get yourself an API key to be able to use this package, see OMDb website. After getting yourself an API key, you can start using.

(setq orgmdb-omdb-apikey "YOUR-API-KEY")
(let ((movie (orgmdb :title "in the mood for love")))
  (format "Movie name: %s, Year: %s, Plot: %s"
          (orgmdb-title movie)
          (orgmdb-year movie)
          (orgmdb-plot movie)))

Another example:

(orgmdb :title "thinking of ending things" :year 2020)

;; This returns something like this:
((Title . "I'm Thinking of Ending Things")
 (Year . "2020")
 (Rated . "R")
 (Released . "04 Sep 2020")
 (Runtime . "134 min")
 (Genre . "Drama, Thriller")
 (Director . "Charlie Kaufman")
 (Writer . "Charlie Kaufman (written for the screen by), Iain Reid (based on the book by)")
 (Actors . "Jesse Plemons, Jessie Buckley, Toni Collette, David Thewlis") (Plot . "Full of misgivings, a young woman travels with her new boyfriend to his parents' secluded farm. Upon arriving, she comes to question everything she thought she knew about him, and herself.")
 (Language . "English, Spanish")
 (Country . "USA") ...)

There are also some other interactive functions that you can use, for example:

orgmdb-movie-properties
Show all properties of a movie in a cute little org-mode buffer with a small poster. If you call this function on a org header, it’ll search for header title in the OMDb. This is the function that you can see in the demo above.
orgmdb-fill-movie-properties
Fetch and set preselected list of properties (see orgmdb-fill-property-list) to current org header. This is useful for having some metadata under your header so that you can filter/search etc. with those properties.

About

An OMDb API client for Emacs with some org-mode related convenience functions.

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%