mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 17:35:04 +00:00
e56303798c
Initial SickGear for Python 3.
8 lines
292 B
Python
8 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'
|