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

How to make healing in an exploration game interesting

World War I as a war of liberals against authoritarians?

Did Ender ever learn that he killed Stilson and/or Bonzo?

Is it normal that my co-workers at a fitness company criticize my food choices?

New passport but visa is in old (lost) passport

What are substitutions for coconut in curry?

Can I use USB data pins as power source

Brexit - No Deal Rejection

Is there a hypothetical scenario that would make Earth uninhabitable for humans, but not for (the majority of) other animals?

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

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

How do you talk to someone whose loved one is dying?

Counting models satisfying a boolean formula

I am confused as to how the inverse of a certain function is found.

Is there a symmetric-key algorithm which we can use for creating a signature?

Is it true that good novels will automatically sell themselves on Amazon (and so on) and there is no need for one to waste time promoting?

Describing a chess game in a novel

Book about superhumans hiding among normal humans

How could an airship be repaired midflight?

Simplify an interface for flexibly applying rules to periods of time

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

Are relativity and doppler effect related?

Instead of a Universal Basic Income program, why not implement a "Universal Basic Needs" program?

Violin - Can double stops be played when the strings are not next to each other?



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|improve this question







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|improve this question







    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|improve this question







      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|improve this question







      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|improve this question







      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|improve this question




      share|improve this question






      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 19 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

          名間水力發電廠 目录 沿革 設施 鄰近設施 註釋 外部連結 导航菜单23°50′10″N 120°42′41″E / 23.83611°N 120.71139°E / 23.83611; 120.7113923°50′10″N 120°42′41″E / 23.83611°N 120.71139°E / 23.83611; 120.71139計畫概要原始内容臺灣第一座BOT 模式開發的水力發電廠-名間水力電廠名間水力發電廠 水利署首件BOT案原始内容《小檔案》名間電廠 首座BOT水力發電廠原始内容名間電廠BOT - 經濟部水利署中區水資源局

          Prove that NP is closed under karp reduction?Space(n) not closed under Karp reductions - what about NTime(n)?Class P is closed under rotation?Prove or disprove that $NL$ is closed under polynomial many-one reductions$mathbfNC_2$ is closed under log-space reductionOn Karp reductionwhen can I know if a class (complexity) is closed under reduction (cook/karp)Check if class $PSPACE$ is closed under polyonomially space reductionIs NPSPACE also closed under polynomial-time reduction and under log-space reduction?Prove PSPACE is closed under complement?Prove PSPACE is closed under union?

          Is my guitar’s action too high? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Strings too stiff on a recently purchased acoustic guitar | Cort AD880CEIs the action of my guitar really high?Μy little finger is too weak to play guitarWith guitar, how long should I give my fingers to strengthen / callous?When playing a fret the guitar sounds mutedPlaying (Barre) chords up the guitar neckI think my guitar strings are wound too tight and I can't play barre chordsF barre chord on an SG guitarHow to find to the right strings of a barre chord by feel?High action on higher fret on my steel acoustic guitar