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 qrcode | |
img = qrcode.make("https://www.google.com/") | |
img.save("QR.jpg") |
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
#instead of this | |
if a == 1 and b == 2 and c == 3: | |
print("All conditions met.") | |
# try this | |
if (a, b, c) == (1, 2, 3): | |
print("All conditions met.") |
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
def sma(items: list, window: int = 5) -> list: | |
"""Simple moving average for list. Window is the amount to average.""" | |
count = 0 | |
averages = [] | |
while count < len(items) - window + 1: | |
values = items[count: count + window] | |
avg = int(sum(values)/window) | |
averages.append(avg) | |
count += 1 | |
return averages |
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 cv2 | |
def img_show_components(labels): # Shows the different marks by assigning random colors to them. | |
# Map component labels to hue val | |
label_hue = np.uint8(179*labels/np.max(labels)) | |
blank_ch = 255*np.ones_like(label_hue) | |
labeled_img = cv2.merge([label_hue, blank_ch, blank_ch]) | |
# cvt to BGR for display | |
labeled_img = cv2.cvtColor(labeled_img, cv2.COLOR_HSV2BGR) | |
# set bg label to black |
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 | |
def multiword_replace(text, word_dict): | |
"""Replaces multiple words using dictionary. Dictionary names found are replaced with their corresponding values.""" | |
rc = re.compile('|'.join(map(re.escape, word_dict))) | |
def translate(match): | |
return word_dict[match.group(0)] | |
return rc.sub(translate, 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
import smtplib | |
def send(message: str, username: str, password: str, phone: str) -> None: | |
"""Sends messages to phone using Gmail servers.""" | |
# Some SMS gateways may be outdated or different, i.e. @txt.att.net was @sms.att.net | |
carriers = { | |
'att': '@txt.att.net', | |
'tmobile': '@tmomail.net', | |
'verizon': '@vtext.com', |
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 timeit | |
class TimeTrack: | |
def __init__(self, func): | |
start = timeit.default_timer() | |
func() | |
stop = timeit.default_timer() | |
print("Time to get %s" % (stop-start)) |
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
Note: This just aligns the position of the textblock, not the text itself. |