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 mimetypes | |
import mimetypes | |
import csv | |
import glob | |
import re | |
import smtplib | |
from email.message import EmailMessage | |
import random | |
from pydrive.auth import GoogleAuth | |
from pydrive.drive import GoogleDrive |
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
[{"Continent_Code": "NA", "Continent_Name": "North America", "Country_Name": " Union", "Country_Number": 4, "Three_Letter_Country_Code": "AFG", "Two_Letter_Country_Code": "AP"},{"Continent_Code": "EU", "Continent_Name": "Europe", "Country_Name": "European Union", "Country_Number": 4, "Three_Letter_Country_Code": "AFG", "Two_Letter_Country_Code": "EU"},{"Continent_Code": "AS", "Continent_Name": "Asia", "Country_Name": "Afghanistan, Islamic Republic of", "Country_Number": 4, "Three_Letter_Country_Code": "AFG", "Two_Letter_Country_Code": "AF"},{"Continent_Code": "EU", "Continent_Name": "Europe", "Country_Name": "Albania, Republic of", "Country_Number": 8, "Three_Letter_Country_Code": "ALB", "Two_Letter_Country_Code": "AL"},{"Continent_Code": "AN", "Continent_Name": "Antarctica", "Country_Name": "Antarctica (the territory South of 60 deg S)", "Country_Number": 10, "Three_Letter_Country_Code": "ATA", "Two_Letter_Country_Code": "AQ"},{"Continent_Code": "AF", "Continent_Name": "Africa", "Country_Name": "Algeria, Peo |
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 re | |
import xml.etree.ElementTree as ET | |
import urllib | |
import m3u8 | |
import shutil | |
import os | |
import pytz | |
import json | |
from datetime import datetime | |
from feedgen.feed import FeedGenerator |
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
#!/usr/bin/python2.7 | |
import json | |
import urllib | |
import pafy | |
import pytz | |
import os | |
import hashlib | |
from datetime import datetime | |
from feedgen.feed import FeedGenerator |
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
#!/usr/bin/python2.7 | |
import time | |
import subprocess | |
from matrix_keypad import RPi_GPIO | |
kp = RPi_GPIO.keypad(columnCount = 4) | |
def digit(): | |
r = None | |
while r==None: | |
r = kp.getKey() |