This file contains hidden or 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 os | |
import google.auth | |
from google.cloud import bigquery | |
from google.cloud import bigquery_storage_v1beta1 | |
import datetime | |
import gspread | |
import urllib.request | |
from oauth2client.service_account import ServiceAccountCredentials | |
def nytaxi_pubsub(event, context): |
This file contains hidden or 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 webbrowser | |
import time | |
count = 0 | |
total_breaks = 2 | |
print("Program Started "+time.ctime()) | |
while count < total_breaks: | |
time.sleep(10) | |
webbrowser.open("https://www.youtube.com/watch?v=-rey3m8SWQI") | |
count += 1 |