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 os | |
import picamera | |
import smtplib | |
import ssl | |
import time | |
from datetime import datetime as dt | |
from email.mime.image import MIMEImage | |
from email.mime.multipart import MIMEMultipart |
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
# Simple unicode encryption | |
def encrypt_message(message): | |
encrypted = ' '.join(str(ord(char)) for char in message) | |
return encrypted | |
def decrypt_message(encrypted_message): | |
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
# Simple binary encryption | |
def encrypt_message(message): | |
encrypted = ' '.join(format(ord(char), '08b') for char in message) | |
return encrypted | |
def decrypt_message(encrypted_message): | |
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
# be sure to enable less secure apps in gmail | |
import smtplib | |
import ssl | |
from email.mime.text import MIMEText | |
def send_gmail(sender, password, receiver, subject, body): | |
"""Prepare and send a nicely formatted Gmail""" | |
msg = MIMEText(body) | |
msg["Subject"] = subject |
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
# Check out https://ncov2019.live/data by Avi Schiffmann | |
# as featured in the Seattle Times at: | |
# https://www.seattletimes.com/seattle-news/education/qa-avi-schiffmann-the-washington-state-teen-behind-a-coronavirus-website-with-millions-of-views/ | |
from email.mime.text import MIMEText | |
import smtplib | |
import ssl | |
import sys | |
import stdiomask | |
from bs4 import BeautifulSoup |
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 datetime | |
import random | |
import sys | |
from matplotlib import animation | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
def update(frame_number, rolls, faces, frequencies): | |
random.seed(datetime.datetime.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
import nltk | |
from textblob import TextBlob | |
from textblob.sentiments import NaiveBayesAnalyzer | |
from textatistic import Textatistic | |
# This corpus is required for the Naive Bayes Analyzer | |
nltk.download("movie_reviews") | |
def main(): | |
user_text = get_user_text() |
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
# explore the Open Weather dot Org API at: https://openweathermap.org/api | |
from datetime import datetime | |
import requests | |
def main(): | |
# app_id will be specific to personal Open Weather acccount, 60 API calls per hour max | |
APP_ID = "#YourAppId" | |
# get zip code from user | |
zip_code = input("Enter a 5-digit, US zip code: ").strip() |
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 random | |
import timeit | |
TAX_RATE = .08 | |
txns = [random.randrange(100) for _ in range(10000000)] | |
def get_price(txn): | |
return txn * (1 + TAX_RATE) | |
def get_prices_with_map(): |
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 sys | |
from time import sleep | |
def countdown(seconds): | |
while seconds > -1: | |
mins, secs = divmod(seconds, 60) | |
formatted_time = f"{mins:02d}:{secs:02d}" | |
if seconds > 3: | |
print(formatted_time, end="\r") | |
else: |
NewerOlder