-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportInfo.py
16 lines (15 loc) · 956 Bytes
/
importInfo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
openweatherAPIKEY =
newyorktimesArticleAPIKey =
gmail_from_address =
gmail_from_address_password =
weather_sources = ['OpenWeather']
place = [['', ''], ['', ''], ['', ''], ['', ''], ['', '']] #enter coordinates from where each user lives
news_sources = ['GoogleNews', 'NewYorkTimes', 'NewsYCombinator'] #delete as desired
news_keywords = [
['Python Projects', 'Python Automation Ideas'], #will send all of these subjects to the 1st in the array: '[email protected]'
['AI', 'Machine Learning', 'Coding Projects'], #will send to the 2nd in the array: '[email protected]'
['Tesla', 'Elon Musk', 'Space X'], #will send to the 3rd in the array: '[email protected]'
['Finance', 'Soccer', 'Manchester City'], #will send to the 4th in the array: '[email protected]'
['NBA', 'NHL'] #will send to the 5th in the array: '[email protected]'
]
email_addresses = ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']