mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
9 lines
292 B
Python
9 lines
292 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import absolute_import, unicode_literals
|
||
|
|
||
|
HOST = 'api.imdbws.com'
|
||
|
BASE_URI = 'https://{0}'.format(HOST)
|
||
|
SEARCH_BASE_URI = 'https://v2.sg.media-imdb.com'
|
||
|
USER_AGENT = 'IMDb/8.3.1 (iPhone9,4; iOS 11.2.1)'
|
||
|
APP_KEY = '76a6cc20-6073-4290-8a2c-951b4580ae4a'
|