This file contains hidden or 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
from bs4 import BeautifulSoup | |
from urllib.request import urlopen | |
import re | |
import pickle | |
import sys | |
from colorama import Fore, Back, Style, init | |
init() | |
decks = list() |
This file contains hidden or 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
if [ "$1" = "--help" ] || [ "$1" = "" ]; then | |
echo "createAnim <animName> <numberOfFrames> <dims> <bgColour>" | |
echo "Example: createAnim walking 3 200x200 white" | |
echo "Use NONE as animName for no text" | |
exit | |
fi | |
for a in `seq $2` | |
do | |
label=$1_$a |