Last active
June 12, 2020 01:14
-
-
Save saeedesmaili/d74aa59a299c61b640241530c173e750 to your computer and use it in GitHub Desktop.
Automate tasks with python - 1. Updating Google Sheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server = 'your_sql_server_address' | |
database = 'database_name' | |
username = 'your_username' | |
password = 'your_password' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pymssql | |
import pandas as pd | |
import config | |
server = config.server | |
database = config.database | |
username = config.username | |
password = config.password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conn = pymssql.connect(server, username, password, database) | |
cursor = conn.cursor(as_dict=True) | |
print("Connected to sql server") | |
cursor.execute(""" | |
SELECT | |
CONVERT(DATE, orders.date) AS date, | |
SUM(CASE WHEN (orders.application = 1) THEN 1 ELSE 0 END) AS website, | |
SUM(CASE WHEN (orders.application = 2) THEN 1 ELSE 0 END) AS application, | |
SUM(CASE WHEN (orders.application > 0) THEN 1 ELSE 0 END) AS total | |
FROM | |
orders | |
where year(orders.date) > 2017 AND orders.status = 1 -- get only successfull orders of 2018 | |
GROUP BY | |
CONVERT(DATE, orders.date) | |
""") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
df = pd.DataFrame(columns=['date', 'website', 'application', 'total']) | |
for row in cursor: | |
df = df.append(row, ignore_index=True) | |
conn.close() | |
print("Data loaded to pandas DataFrame") | |
df.sort_values(by = 'date', inplace=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gspread | |
from oauth2client.service_account import ServiceAccountCredentials | |
scope = ['https://spreadsheets.google.com/feeds'] | |
credentials = ServiceAccountCredentials.from_json_keyfile_name('your_json_file.json', scope) | |
gc = gspread.authorize(credentials) | |
wks = gc.open("Your Google Sheet Name").worksheet('Sheet Name') | |
print("Google sheet is ready now") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gspread_dataframe import set_with_dataframe | |
set_with_dataframe(wks, df) | |
print("Data added to sheet successfully") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pymssql | |
import pandas as pd | |
import gspread | |
import config | |
from oauth2client.service_account import ServiceAccountCredentials | |
from gspread_dataframe import set_with_dataframe | |
server = config.server | |
database = config.database | |
username = config.username | |
password = config.password | |
def update_sheet(): | |
conn = pymssql.connect(server, username, password, database) | |
cursor = conn.cursor(as_dict=True) | |
print("Connected to sql server") | |
cursor.execute(""" | |
SELECT | |
CONVERT(DATE, orders.date) AS date, | |
SUM(CASE WHEN (orders.application = 1) THEN 1 ELSE 0 END) AS website, | |
SUM(CASE WHEN (orders.application = 2) THEN 1 ELSE 0 END) AS application, | |
SUM(CASE WHEN (orders.application > 0) THEN 1 ELSE 0 END) AS total | |
FROM | |
orders | |
where year(orders.date) > 2017 AND orders.status = 1 -- get only successfull orders of 2018 | |
GROUP BY | |
CONVERT(DATE, orders.date) | |
""") | |
df = pd.DataFrame(columns=['date', 'website', 'application', 'total']) | |
for row in cursor: | |
df = df.append(row, ignore_index=True) | |
conn.close() | |
print("Data loaded to pandas DataFrame") | |
df.sort_values(by = 'date', inplace=True) | |
scope = ['https://spreadsheets.google.com/feeds'] | |
credentials = ServiceAccountCredentials.from_json_keyfile_name('your_json_file.json', scope) | |
gc = gspread.authorize(credentials) | |
wks = gc.open("Your Google Sheet Name").worksheet('Sheet Name') | |
print("Google sheet is ready now") | |
set_with_dataframe(wks, df) | |
print("Data added to sheet successfully") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import schedule | |
import time | |
schedule.every().hour.do(update_sheet) | |
while True: | |
schedule.run_pending() | |
time.sleep(60) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment