Edit on GitHub

datasources.telegram

Initialize The Guardian data source

 1"""
 2Initialize The Guardian data source
 3"""
 4
 5# An init_datasource function is expected to be available to initialize this
 6# data source. A default function that does this is available from the
 7# backend helpers library.
 8from common.lib.helpers import init_datasource
 9
10# Internal identifier for this data source
11DATASOURCE = "telegram"
12NAME = "Telegram"
13
14USER_SETTINGS = ["api_id", "api_key", "phone", "security_code"]
DATASOURCE = 'telegram'
NAME = 'Telegram'
USER_SETTINGS = ['api_id', 'api_key', 'phone', 'security_code']