dgilland / omdb.py

Python wrapper around OMDb API (Open Movie Database): http://omdbapi.com
http://omdbpy.readthedocs.org
Other
98 stars 23 forks source link

API Key? #14

Closed seitzbg closed 7 years ago

seitzbg commented 7 years ago

How does one use their API key with this module?

TIA,

seitzbg commented 7 years ago

Got it working with omdb.request.

dgilland commented 7 years ago

There's first-class support for this with v0.8.1:

import omdb

omdb.set_default('apikey', API_KEY)

# or
client = omdb.Client(apikey=API_KEY)