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
# Setup Steps for Mac | |
# 1. sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl | |
# 2. sudo chmod a+rx /usr/local/bin/youtube-dl | |
# 3. brew install ffmpeg | |
import subprocess | |
urls = [ | |
"https://www.youtube.com/watch?v=ABCDEDFGH" | |
] |
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
# -*- coding: utf-8 -*- | |
from PIL import Image, ImageDraw,ImageFont | |
import boto3 | |
import PIL.Image | |
def handler(): | |
fontpath = "Roboto/Roboto-Medium.ttf" | |
for i in range(1,101): | |
im = Image.open("whiteimage.png") | |
draw = ImageDraw.Draw(im) |
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/env python3 | |
import time | |
import os | |
import zipfile | |
import shutil | |
import errno | |
folder_name = "local_folder_name" #_where_all_files need to save |