Get data and send mail scriptPython compress and sendData cleansing and formatting scriptGet all followers and friends of a Twitter userSend emails with data from spreadsheet filesTwitter streamer that stores data in mongodb and emails errorsGet nearest driver from 2.5 millions of data using mongodbPHP script to generate invoice and send notificationGet 10-day forecast scriptConstruct and send an HTTP get request from scratch and print all the received data to the screenNode.js Data-Completion script

Is it good practice to use Linear Least-Squares with SMA?

How to write cleanly even if my character uses expletive language?

Why does a Star of David appear at a rally with Francisco Franco?

What is the adequate fee for a reveal operation?

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

What exactly is this small puffer fish doing and how did it manage to accomplish such a feat?

combinatorics floor summation

Are relativity and doppler effect related?

Print a physical multiplication table

A diagram about partial derivatives of f(x,y)

Math equation in non italic font

Have the tides ever turned twice on any open problem?

Do I need to be arrogant to get ahead?

How difficult is it to simply disable/disengage the MCAS on Boeing 737 Max 8 & 9 Aircraft?

Employee lack of ownership

Most cost effective thermostat setting: consistent temperature vs. lowest temperature possible

Happy pi day, everyone!

Python if-else code style for reduced code for rounding floats

Why do passenger jet manufacturers design their planes with stall prevention systems?

Examples of transfinite towers

What is a ^ b and (a & b) << 1?

What is the Japanese sound word for the clinking of money?

How should I state my peer review experience in the CV?

"of which" is correct here?



Get data and send mail script


Python compress and sendData cleansing and formatting scriptGet all followers and friends of a Twitter userSend emails with data from spreadsheet filesTwitter streamer that stores data in mongodb and emails errorsGet nearest driver from 2.5 millions of data using mongodbPHP script to generate invoice and send notificationGet 10-day forecast scriptConstruct and send an HTTP get request from scratch and print all the received data to the screenNode.js Data-Completion script













0












$begingroup$


Hi so I wrote a script using Python that gets data from several sources (news sites, twitter, yahoo), puts it into a dict and then formats it as a string to be sent through email.
I wonder if there is possibility to write the code more neatly in a shorter way. Maybe Im doing some steps that are a bit unneccessary and maybe faster and I could do it differently, but not sure how.



import json
import urllib.request
from twitter import Twitter, OAuth, TwitterHTTPError, TwitterStream
from bs4 import BeautifulSoup
import requests
import datetime
from pymongo import MongoClient
from email.mime.text import MIMEText
import smtplib
import os
#from config import *

now = datetime.datetime.now()
api_news= os.environ["api_news"]

#twitter setup
ACCESS_TOKEN = os.environ["ACCESS_TOKEN"]
ACCESS_SECRET = os.environ["ACCESS_SECRET"]
CONSUMER_KEY = os.environ["CONSUMER_KEY"]
CONSUMER_SECRET = os.environ["CONSUMER_SECRET"]
oauth = OAuth(ACCESS_TOKEN, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET)
twitter = Twitter(auth=oauth)

#polish
pol_trends = twitter.trends.place(_id = 23424923)
twittrendlistPL=[]
for i in pol_trends[0]['trends']:
twittrendlistPL.append(i['name'])
strPLT="<br>".join(str(x) for x in twittrendlistPL[0:15])

#global trends
globaltrends=twitter.trends.place(_id = 1)
twittrendlist=[]
for i in globaltrends[0]['trends']:
twittrendlist.append(i['name'])
def isEnglish(s):
try:
s.encode(encoding='utf-8').decode('ascii')
except UnicodeDecodeError:
return False
else:
return True
G=[i for i in twittrendlist if isEnglish(i)]
strGT="<br>".join(str(x) for x in G[0:15])

#us headlines
url = ('https://newsapi.org/v2/top-headlines?'
'country=us&'+api_news)
response = requests.get(url)
listus=[]
for i in range(len(response.json()['articles'])):
listus.append(response.json()['articles'][i]['title'])
listus.append(response.json()['articles'][i]['url'])
strNUS="<br>".join(str(x) for x in listus[0:10])


#uk headlines
url = ('https://newsapi.org/v2/top-headlines?country=gb&'+api_news)
response = requests.get(url)
listGB=[]
for i in range(len(response.json()['articles'])):
listGB.append(response.json()['articles'][i]['title'])
listGB.append(response.json()['articles'][i]['url'])
strGB="<br>".join(str(x) for x in listGB[0:10])


#google news(global) headlines
url = ("https://newsapi.org/v2/top-headlines?sources=google-news&"+api_news)
response = requests.get(url)
listg=[]
for i in range(len(response.json()['articles'])):
listg.append(response.json()['articles'][i]['title'])
listg.append(response.json()['articles'][i]['url'])
strg="<br>".join(str(x) for x in listg[0:10])


#most popular from technology
url = ("https://newsapi.org/v2/top-headlines?category=technology&country=us&sortBy=popularity&"+api_news)

response = requests.get(url)
listt=[]
for i in range(len(response.json()['articles'])):
listt.append(response.json()['articles'][i]['title'])
listt.append(response.json()['articles'][i]['url'])
strt="<br>".join(str(x) for x in listt[0:10])

#yahoo trending charts
page = requests.get("https://finance.yahoo.com/trending-tickers/")
soup = BeautifulSoup(page.content, 'html.parser')
base=soup.findAll('td', 'class':'data-col1 Ta(start) Pstart(10px) Miw(180px)')
yhoo=[]
for i in base:
yhoo.append(i.get_text())
strYHOO='<br>'.join(str(x) for x in yhoo[0:15])

#crypto trends to find
with urllib.request.urlopen("https://api.coinmarketcap.com/v2/ticker/") as url:
cmc = json.loads(url.read().decode())
names=[]
change=[]
for i in cmc['data']:
names.append(cmc['data'][i]['symbol'])
change.append(cmc['data'][i]['quotes']['USD']['percent_change_24h'])
change, names = zip(*sorted(zip(change, names)))
cmcstr='<br>'.join([str(a) + ': '+ str(b) + '%' for a,b in zip(names[-5:],change[-5:])])

#create a dict to upload for db
maind=
"Global Twitter trends": strGT,
"Polish Twitter trends" : strPLT,
"Top US headlines": strNUS,
"Top UK headlines": strGB,
"Top Google News headlines": strg,
"Top tech headlines": strt,
"Trending yahoo stocks": strYHOO,
"CMC trending": cmcstr,
"Date": str(datetime.date.today())


#create and connect to mongo database
mongo=os.environ["mongodb"]
try:
#local test
#conn = MongoClient()
#production
conn = MongoClient(mongo)
print("Connected successfully!!!")
except:
print("Could not connect to MongoDB")

#Create/conn database
db = conn.database

# Created or Switched to collection names: trends
collection = db.trends

# Insert Data
rec_id1 = collection.insert_one(maind)
print("Data inserted with record ids",rec_id1)

mpass=os.environ["mpass"]

record = collection.find_one('Date': str(datetime.date.today())) #create record that is from today
#convert all from database so that its easier to put into mail
gtt=record["Global Twitter trends"]
ptt=record["Polish Twitter trends"]
tus=record["Top US headlines"]
tuk=record["Top UK headlines"]
tgn=record["Top Google News headlines"]
tech=record["Top tech headlines"]
cmc=record["CMC trending"]
yahoo=record["Trending yahoo stocks"]
date=record["Date"]

#crate function to send mail
def send_email(date, *args):
#login data
from_email="" #sending mail
from_password=mpass
to_email="" #recipient

subject="Daily trends 0".format(date)
message="Today's dose of news and trends starting with global twitter trends:<br> <strong>0</strong>. <br> <br> Polish twitter:<br> <strong>1</strong> <br> <br> Top us headlines:<br> <strong>2</strong> <br> <br> Top uk headlines:<br> <strong>3</strong> <br> <br> Top news headlines:<br> <strong>4</strong> <br> <br> Tech news:<br> <strong>5</strong> <br> <br> CMC trending:<br> <strong>6</strong> <br> <br> Yahoo trending:<br> <strong>7</strong> <br>".format(*args)
msg=MIMEText(message, 'html') #msg setup
msg['Subject']=subject
msg['To']=to_email
msg['From']=from_email
gmail=smtplib.SMTP('smtp.gmail.com', 587) #mail setup
gmail.ehlo()
gmail.starttls()
gmail.login(from_email, from_password)
gmail.send_message(msg)

send_email(date, gtt, ptt, tus, tuk, tgn, tech, cmc, yahoo)








share







New contributor




Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$
















    0












    $begingroup$


    Hi so I wrote a script using Python that gets data from several sources (news sites, twitter, yahoo), puts it into a dict and then formats it as a string to be sent through email.
    I wonder if there is possibility to write the code more neatly in a shorter way. Maybe Im doing some steps that are a bit unneccessary and maybe faster and I could do it differently, but not sure how.



    import json
    import urllib.request
    from twitter import Twitter, OAuth, TwitterHTTPError, TwitterStream
    from bs4 import BeautifulSoup
    import requests
    import datetime
    from pymongo import MongoClient
    from email.mime.text import MIMEText
    import smtplib
    import os
    #from config import *

    now = datetime.datetime.now()
    api_news= os.environ["api_news"]

    #twitter setup
    ACCESS_TOKEN = os.environ["ACCESS_TOKEN"]
    ACCESS_SECRET = os.environ["ACCESS_SECRET"]
    CONSUMER_KEY = os.environ["CONSUMER_KEY"]
    CONSUMER_SECRET = os.environ["CONSUMER_SECRET"]
    oauth = OAuth(ACCESS_TOKEN, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET)
    twitter = Twitter(auth=oauth)

    #polish
    pol_trends = twitter.trends.place(_id = 23424923)
    twittrendlistPL=[]
    for i in pol_trends[0]['trends']:
    twittrendlistPL.append(i['name'])
    strPLT="<br>".join(str(x) for x in twittrendlistPL[0:15])

    #global trends
    globaltrends=twitter.trends.place(_id = 1)
    twittrendlist=[]
    for i in globaltrends[0]['trends']:
    twittrendlist.append(i['name'])
    def isEnglish(s):
    try:
    s.encode(encoding='utf-8').decode('ascii')
    except UnicodeDecodeError:
    return False
    else:
    return True
    G=[i for i in twittrendlist if isEnglish(i)]
    strGT="<br>".join(str(x) for x in G[0:15])

    #us headlines
    url = ('https://newsapi.org/v2/top-headlines?'
    'country=us&'+api_news)
    response = requests.get(url)
    listus=[]
    for i in range(len(response.json()['articles'])):
    listus.append(response.json()['articles'][i]['title'])
    listus.append(response.json()['articles'][i]['url'])
    strNUS="<br>".join(str(x) for x in listus[0:10])


    #uk headlines
    url = ('https://newsapi.org/v2/top-headlines?country=gb&'+api_news)
    response = requests.get(url)
    listGB=[]
    for i in range(len(response.json()['articles'])):
    listGB.append(response.json()['articles'][i]['title'])
    listGB.append(response.json()['articles'][i]['url'])
    strGB="<br>".join(str(x) for x in listGB[0:10])


    #google news(global) headlines
    url = ("https://newsapi.org/v2/top-headlines?sources=google-news&"+api_news)
    response = requests.get(url)
    listg=[]
    for i in range(len(response.json()['articles'])):
    listg.append(response.json()['articles'][i]['title'])
    listg.append(response.json()['articles'][i]['url'])
    strg="<br>".join(str(x) for x in listg[0:10])


    #most popular from technology
    url = ("https://newsapi.org/v2/top-headlines?category=technology&country=us&sortBy=popularity&"+api_news)

    response = requests.get(url)
    listt=[]
    for i in range(len(response.json()['articles'])):
    listt.append(response.json()['articles'][i]['title'])
    listt.append(response.json()['articles'][i]['url'])
    strt="<br>".join(str(x) for x in listt[0:10])

    #yahoo trending charts
    page = requests.get("https://finance.yahoo.com/trending-tickers/")
    soup = BeautifulSoup(page.content, 'html.parser')
    base=soup.findAll('td', 'class':'data-col1 Ta(start) Pstart(10px) Miw(180px)')
    yhoo=[]
    for i in base:
    yhoo.append(i.get_text())
    strYHOO='<br>'.join(str(x) for x in yhoo[0:15])

    #crypto trends to find
    with urllib.request.urlopen("https://api.coinmarketcap.com/v2/ticker/") as url:
    cmc = json.loads(url.read().decode())
    names=[]
    change=[]
    for i in cmc['data']:
    names.append(cmc['data'][i]['symbol'])
    change.append(cmc['data'][i]['quotes']['USD']['percent_change_24h'])
    change, names = zip(*sorted(zip(change, names)))
    cmcstr='<br>'.join([str(a) + ': '+ str(b) + '%' for a,b in zip(names[-5:],change[-5:])])

    #create a dict to upload for db
    maind=
    "Global Twitter trends": strGT,
    "Polish Twitter trends" : strPLT,
    "Top US headlines": strNUS,
    "Top UK headlines": strGB,
    "Top Google News headlines": strg,
    "Top tech headlines": strt,
    "Trending yahoo stocks": strYHOO,
    "CMC trending": cmcstr,
    "Date": str(datetime.date.today())


    #create and connect to mongo database
    mongo=os.environ["mongodb"]
    try:
    #local test
    #conn = MongoClient()
    #production
    conn = MongoClient(mongo)
    print("Connected successfully!!!")
    except:
    print("Could not connect to MongoDB")

    #Create/conn database
    db = conn.database

    # Created or Switched to collection names: trends
    collection = db.trends

    # Insert Data
    rec_id1 = collection.insert_one(maind)
    print("Data inserted with record ids",rec_id1)

    mpass=os.environ["mpass"]

    record = collection.find_one('Date': str(datetime.date.today())) #create record that is from today
    #convert all from database so that its easier to put into mail
    gtt=record["Global Twitter trends"]
    ptt=record["Polish Twitter trends"]
    tus=record["Top US headlines"]
    tuk=record["Top UK headlines"]
    tgn=record["Top Google News headlines"]
    tech=record["Top tech headlines"]
    cmc=record["CMC trending"]
    yahoo=record["Trending yahoo stocks"]
    date=record["Date"]

    #crate function to send mail
    def send_email(date, *args):
    #login data
    from_email="" #sending mail
    from_password=mpass
    to_email="" #recipient

    subject="Daily trends 0".format(date)
    message="Today's dose of news and trends starting with global twitter trends:<br> <strong>0</strong>. <br> <br> Polish twitter:<br> <strong>1</strong> <br> <br> Top us headlines:<br> <strong>2</strong> <br> <br> Top uk headlines:<br> <strong>3</strong> <br> <br> Top news headlines:<br> <strong>4</strong> <br> <br> Tech news:<br> <strong>5</strong> <br> <br> CMC trending:<br> <strong>6</strong> <br> <br> Yahoo trending:<br> <strong>7</strong> <br>".format(*args)
    msg=MIMEText(message, 'html') #msg setup
    msg['Subject']=subject
    msg['To']=to_email
    msg['From']=from_email
    gmail=smtplib.SMTP('smtp.gmail.com', 587) #mail setup
    gmail.ehlo()
    gmail.starttls()
    gmail.login(from_email, from_password)
    gmail.send_message(msg)

    send_email(date, gtt, ptt, tus, tuk, tgn, tech, cmc, yahoo)








    share







    New contributor




    Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.







    $endgroup$














      0












      0








      0





      $begingroup$


      Hi so I wrote a script using Python that gets data from several sources (news sites, twitter, yahoo), puts it into a dict and then formats it as a string to be sent through email.
      I wonder if there is possibility to write the code more neatly in a shorter way. Maybe Im doing some steps that are a bit unneccessary and maybe faster and I could do it differently, but not sure how.



      import json
      import urllib.request
      from twitter import Twitter, OAuth, TwitterHTTPError, TwitterStream
      from bs4 import BeautifulSoup
      import requests
      import datetime
      from pymongo import MongoClient
      from email.mime.text import MIMEText
      import smtplib
      import os
      #from config import *

      now = datetime.datetime.now()
      api_news= os.environ["api_news"]

      #twitter setup
      ACCESS_TOKEN = os.environ["ACCESS_TOKEN"]
      ACCESS_SECRET = os.environ["ACCESS_SECRET"]
      CONSUMER_KEY = os.environ["CONSUMER_KEY"]
      CONSUMER_SECRET = os.environ["CONSUMER_SECRET"]
      oauth = OAuth(ACCESS_TOKEN, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET)
      twitter = Twitter(auth=oauth)

      #polish
      pol_trends = twitter.trends.place(_id = 23424923)
      twittrendlistPL=[]
      for i in pol_trends[0]['trends']:
      twittrendlistPL.append(i['name'])
      strPLT="<br>".join(str(x) for x in twittrendlistPL[0:15])

      #global trends
      globaltrends=twitter.trends.place(_id = 1)
      twittrendlist=[]
      for i in globaltrends[0]['trends']:
      twittrendlist.append(i['name'])
      def isEnglish(s):
      try:
      s.encode(encoding='utf-8').decode('ascii')
      except UnicodeDecodeError:
      return False
      else:
      return True
      G=[i for i in twittrendlist if isEnglish(i)]
      strGT="<br>".join(str(x) for x in G[0:15])

      #us headlines
      url = ('https://newsapi.org/v2/top-headlines?'
      'country=us&'+api_news)
      response = requests.get(url)
      listus=[]
      for i in range(len(response.json()['articles'])):
      listus.append(response.json()['articles'][i]['title'])
      listus.append(response.json()['articles'][i]['url'])
      strNUS="<br>".join(str(x) for x in listus[0:10])


      #uk headlines
      url = ('https://newsapi.org/v2/top-headlines?country=gb&'+api_news)
      response = requests.get(url)
      listGB=[]
      for i in range(len(response.json()['articles'])):
      listGB.append(response.json()['articles'][i]['title'])
      listGB.append(response.json()['articles'][i]['url'])
      strGB="<br>".join(str(x) for x in listGB[0:10])


      #google news(global) headlines
      url = ("https://newsapi.org/v2/top-headlines?sources=google-news&"+api_news)
      response = requests.get(url)
      listg=[]
      for i in range(len(response.json()['articles'])):
      listg.append(response.json()['articles'][i]['title'])
      listg.append(response.json()['articles'][i]['url'])
      strg="<br>".join(str(x) for x in listg[0:10])


      #most popular from technology
      url = ("https://newsapi.org/v2/top-headlines?category=technology&country=us&sortBy=popularity&"+api_news)

      response = requests.get(url)
      listt=[]
      for i in range(len(response.json()['articles'])):
      listt.append(response.json()['articles'][i]['title'])
      listt.append(response.json()['articles'][i]['url'])
      strt="<br>".join(str(x) for x in listt[0:10])

      #yahoo trending charts
      page = requests.get("https://finance.yahoo.com/trending-tickers/")
      soup = BeautifulSoup(page.content, 'html.parser')
      base=soup.findAll('td', 'class':'data-col1 Ta(start) Pstart(10px) Miw(180px)')
      yhoo=[]
      for i in base:
      yhoo.append(i.get_text())
      strYHOO='<br>'.join(str(x) for x in yhoo[0:15])

      #crypto trends to find
      with urllib.request.urlopen("https://api.coinmarketcap.com/v2/ticker/") as url:
      cmc = json.loads(url.read().decode())
      names=[]
      change=[]
      for i in cmc['data']:
      names.append(cmc['data'][i]['symbol'])
      change.append(cmc['data'][i]['quotes']['USD']['percent_change_24h'])
      change, names = zip(*sorted(zip(change, names)))
      cmcstr='<br>'.join([str(a) + ': '+ str(b) + '%' for a,b in zip(names[-5:],change[-5:])])

      #create a dict to upload for db
      maind=
      "Global Twitter trends": strGT,
      "Polish Twitter trends" : strPLT,
      "Top US headlines": strNUS,
      "Top UK headlines": strGB,
      "Top Google News headlines": strg,
      "Top tech headlines": strt,
      "Trending yahoo stocks": strYHOO,
      "CMC trending": cmcstr,
      "Date": str(datetime.date.today())


      #create and connect to mongo database
      mongo=os.environ["mongodb"]
      try:
      #local test
      #conn = MongoClient()
      #production
      conn = MongoClient(mongo)
      print("Connected successfully!!!")
      except:
      print("Could not connect to MongoDB")

      #Create/conn database
      db = conn.database

      # Created or Switched to collection names: trends
      collection = db.trends

      # Insert Data
      rec_id1 = collection.insert_one(maind)
      print("Data inserted with record ids",rec_id1)

      mpass=os.environ["mpass"]

      record = collection.find_one('Date': str(datetime.date.today())) #create record that is from today
      #convert all from database so that its easier to put into mail
      gtt=record["Global Twitter trends"]
      ptt=record["Polish Twitter trends"]
      tus=record["Top US headlines"]
      tuk=record["Top UK headlines"]
      tgn=record["Top Google News headlines"]
      tech=record["Top tech headlines"]
      cmc=record["CMC trending"]
      yahoo=record["Trending yahoo stocks"]
      date=record["Date"]

      #crate function to send mail
      def send_email(date, *args):
      #login data
      from_email="" #sending mail
      from_password=mpass
      to_email="" #recipient

      subject="Daily trends 0".format(date)
      message="Today's dose of news and trends starting with global twitter trends:<br> <strong>0</strong>. <br> <br> Polish twitter:<br> <strong>1</strong> <br> <br> Top us headlines:<br> <strong>2</strong> <br> <br> Top uk headlines:<br> <strong>3</strong> <br> <br> Top news headlines:<br> <strong>4</strong> <br> <br> Tech news:<br> <strong>5</strong> <br> <br> CMC trending:<br> <strong>6</strong> <br> <br> Yahoo trending:<br> <strong>7</strong> <br>".format(*args)
      msg=MIMEText(message, 'html') #msg setup
      msg['Subject']=subject
      msg['To']=to_email
      msg['From']=from_email
      gmail=smtplib.SMTP('smtp.gmail.com', 587) #mail setup
      gmail.ehlo()
      gmail.starttls()
      gmail.login(from_email, from_password)
      gmail.send_message(msg)

      send_email(date, gtt, ptt, tus, tuk, tgn, tech, cmc, yahoo)








      share







      New contributor




      Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.







      $endgroup$




      Hi so I wrote a script using Python that gets data from several sources (news sites, twitter, yahoo), puts it into a dict and then formats it as a string to be sent through email.
      I wonder if there is possibility to write the code more neatly in a shorter way. Maybe Im doing some steps that are a bit unneccessary and maybe faster and I could do it differently, but not sure how.



      import json
      import urllib.request
      from twitter import Twitter, OAuth, TwitterHTTPError, TwitterStream
      from bs4 import BeautifulSoup
      import requests
      import datetime
      from pymongo import MongoClient
      from email.mime.text import MIMEText
      import smtplib
      import os
      #from config import *

      now = datetime.datetime.now()
      api_news= os.environ["api_news"]

      #twitter setup
      ACCESS_TOKEN = os.environ["ACCESS_TOKEN"]
      ACCESS_SECRET = os.environ["ACCESS_SECRET"]
      CONSUMER_KEY = os.environ["CONSUMER_KEY"]
      CONSUMER_SECRET = os.environ["CONSUMER_SECRET"]
      oauth = OAuth(ACCESS_TOKEN, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET)
      twitter = Twitter(auth=oauth)

      #polish
      pol_trends = twitter.trends.place(_id = 23424923)
      twittrendlistPL=[]
      for i in pol_trends[0]['trends']:
      twittrendlistPL.append(i['name'])
      strPLT="<br>".join(str(x) for x in twittrendlistPL[0:15])

      #global trends
      globaltrends=twitter.trends.place(_id = 1)
      twittrendlist=[]
      for i in globaltrends[0]['trends']:
      twittrendlist.append(i['name'])
      def isEnglish(s):
      try:
      s.encode(encoding='utf-8').decode('ascii')
      except UnicodeDecodeError:
      return False
      else:
      return True
      G=[i for i in twittrendlist if isEnglish(i)]
      strGT="<br>".join(str(x) for x in G[0:15])

      #us headlines
      url = ('https://newsapi.org/v2/top-headlines?'
      'country=us&'+api_news)
      response = requests.get(url)
      listus=[]
      for i in range(len(response.json()['articles'])):
      listus.append(response.json()['articles'][i]['title'])
      listus.append(response.json()['articles'][i]['url'])
      strNUS="<br>".join(str(x) for x in listus[0:10])


      #uk headlines
      url = ('https://newsapi.org/v2/top-headlines?country=gb&'+api_news)
      response = requests.get(url)
      listGB=[]
      for i in range(len(response.json()['articles'])):
      listGB.append(response.json()['articles'][i]['title'])
      listGB.append(response.json()['articles'][i]['url'])
      strGB="<br>".join(str(x) for x in listGB[0:10])


      #google news(global) headlines
      url = ("https://newsapi.org/v2/top-headlines?sources=google-news&"+api_news)
      response = requests.get(url)
      listg=[]
      for i in range(len(response.json()['articles'])):
      listg.append(response.json()['articles'][i]['title'])
      listg.append(response.json()['articles'][i]['url'])
      strg="<br>".join(str(x) for x in listg[0:10])


      #most popular from technology
      url = ("https://newsapi.org/v2/top-headlines?category=technology&country=us&sortBy=popularity&"+api_news)

      response = requests.get(url)
      listt=[]
      for i in range(len(response.json()['articles'])):
      listt.append(response.json()['articles'][i]['title'])
      listt.append(response.json()['articles'][i]['url'])
      strt="<br>".join(str(x) for x in listt[0:10])

      #yahoo trending charts
      page = requests.get("https://finance.yahoo.com/trending-tickers/")
      soup = BeautifulSoup(page.content, 'html.parser')
      base=soup.findAll('td', 'class':'data-col1 Ta(start) Pstart(10px) Miw(180px)')
      yhoo=[]
      for i in base:
      yhoo.append(i.get_text())
      strYHOO='<br>'.join(str(x) for x in yhoo[0:15])

      #crypto trends to find
      with urllib.request.urlopen("https://api.coinmarketcap.com/v2/ticker/") as url:
      cmc = json.loads(url.read().decode())
      names=[]
      change=[]
      for i in cmc['data']:
      names.append(cmc['data'][i]['symbol'])
      change.append(cmc['data'][i]['quotes']['USD']['percent_change_24h'])
      change, names = zip(*sorted(zip(change, names)))
      cmcstr='<br>'.join([str(a) + ': '+ str(b) + '%' for a,b in zip(names[-5:],change[-5:])])

      #create a dict to upload for db
      maind=
      "Global Twitter trends": strGT,
      "Polish Twitter trends" : strPLT,
      "Top US headlines": strNUS,
      "Top UK headlines": strGB,
      "Top Google News headlines": strg,
      "Top tech headlines": strt,
      "Trending yahoo stocks": strYHOO,
      "CMC trending": cmcstr,
      "Date": str(datetime.date.today())


      #create and connect to mongo database
      mongo=os.environ["mongodb"]
      try:
      #local test
      #conn = MongoClient()
      #production
      conn = MongoClient(mongo)
      print("Connected successfully!!!")
      except:
      print("Could not connect to MongoDB")

      #Create/conn database
      db = conn.database

      # Created or Switched to collection names: trends
      collection = db.trends

      # Insert Data
      rec_id1 = collection.insert_one(maind)
      print("Data inserted with record ids",rec_id1)

      mpass=os.environ["mpass"]

      record = collection.find_one('Date': str(datetime.date.today())) #create record that is from today
      #convert all from database so that its easier to put into mail
      gtt=record["Global Twitter trends"]
      ptt=record["Polish Twitter trends"]
      tus=record["Top US headlines"]
      tuk=record["Top UK headlines"]
      tgn=record["Top Google News headlines"]
      tech=record["Top tech headlines"]
      cmc=record["CMC trending"]
      yahoo=record["Trending yahoo stocks"]
      date=record["Date"]

      #crate function to send mail
      def send_email(date, *args):
      #login data
      from_email="" #sending mail
      from_password=mpass
      to_email="" #recipient

      subject="Daily trends 0".format(date)
      message="Today's dose of news and trends starting with global twitter trends:<br> <strong>0</strong>. <br> <br> Polish twitter:<br> <strong>1</strong> <br> <br> Top us headlines:<br> <strong>2</strong> <br> <br> Top uk headlines:<br> <strong>3</strong> <br> <br> Top news headlines:<br> <strong>4</strong> <br> <br> Tech news:<br> <strong>5</strong> <br> <br> CMC trending:<br> <strong>6</strong> <br> <br> Yahoo trending:<br> <strong>7</strong> <br>".format(*args)
      msg=MIMEText(message, 'html') #msg setup
      msg['Subject']=subject
      msg['To']=to_email
      msg['From']=from_email
      gmail=smtplib.SMTP('smtp.gmail.com', 587) #mail setup
      gmail.ehlo()
      gmail.starttls()
      gmail.login(from_email, from_password)
      gmail.send_message(msg)

      send_email(date, gtt, ptt, tus, tuk, tgn, tech, cmc, yahoo)






      python performance mongodb





      share







      New contributor




      Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 7 mins ago









      Alex TAlex T

      101




      101




      New contributor




      Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Alex T is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          0






          active

          oldest

          votes











          Your Answer





          StackExchange.ifUsing("editor", function ()
          return StackExchange.using("mathjaxEditing", function ()
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
          );
          );
          , "mathjax-editing");

          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "196"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Alex T is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215586%2fget-data-and-send-mail-script%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Alex T is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Alex T is a new contributor. Be nice, and check out our Code of Conduct.












          Alex T is a new contributor. Be nice, and check out our Code of Conduct.











          Alex T is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Code Review Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215586%2fget-data-and-send-mail-script%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          कुँवर स्रोत दिक्चालन सूची"कुँवर""राणा कुँवरके वंशावली"

          Why is a white electrical wire connected to 2 black wires?How to wire a light fixture with 3 white wires in box?How should I wire a ceiling fan when there's only three wires in the box?Two white, two black, two ground, and red wire in ceiling box connected to switchWhy is there a white wire connected to multiple black wires in my light box?How to wire a light with two white wires and one black wireReplace light switch connected to a power outlet with dimmer - two black wires to one black and redHow to wire a light with multiple black/white/green wires from the ceiling?Ceiling box has 2 black and white wires but fan/ light only has 1 of eachWhy neutral wire connected to load wire?Switch with 2 black, 2 white, 2 ground and 1 red wire connected to ceiling light and a receptacle?

          चैत्य भूमि चित्र दीर्घा सन्दर्भ बाहरी कडियाँ दिक्चालन सूची"Chaitya Bhoomi""Chaitya Bhoomi: Statue of Equality in India""Dadar Chaitya Bhoomi: Statue of Equality in India""Ambedkar memorial: Centre okays transfer of Indu Mill land"चैत्यभमि