-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
38 lines (28 loc) · 895 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
class Config:
'''
General configuration parent class
'''
NEWS_SRC_API_BASE_URL = 'https://newsapi.org/v2/sources?apiKey={}&language=en'
ARTICLES_FROM_SRC_BASE_URL = 'https://newsapi.org/v2/top-headlines?sources={}&apiKey={}'
SEARCH_BASE_URL = 'https://newsapi.org/v2/everything?q={}&apiKey={}'
NEWS_API_KEY = os.environ.get('NEWS_API_KEY')
SECRET_KEY = os.environ.get('SECRET_KEY')
class ProdConfig(Config):
'''
Production configuration child class
Args:
Config: The parent configuration class with General configuration settings
'''
pass
class DevConfig(Config):
'''
Development configuration child class
Args:
Config: The parent configuration class with General configuration settings
'''
DEBUG = True
config_options = {
'development':DevConfig,
'production':ProdConfig
}