Skip to content

Instantly share code, notes, and snippets.

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):
@msgeorgem
msgeorgem / time_break.py
Created February 6, 2017 18:54
time_break
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