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
import urllib.request, datetime, os | |
from bs4 import BeautifulSoup as BS | |
class comicsDL: | |
def __init__(self, theComicStrip): | |
self.targetDirectory = "C:\\MyDailyComics" | |
self.goComics = "http://www.gocomics.com/" | |
self.today = datetime.date.today() | |
self.todayfrmt = self.today.strftime('%Y%m%d') | |
self.myComicStrip = self.goComics + theComicStrip |
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
__author__ = "jjeskiewicz" | |
import random, sys | |
class Solitaire: | |
def __init__(self, master): | |
self.gameDeck = DeckOfCards() | |
self.o_A = tableauPile() | |
self.o_B = tableauPile() | |
self.o_C = tableauPile() | |
self.o_D = tableauPile() |
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
__author__ = "jjeskiewicz" | |
import random | |
class DeckOfCards: | |
def __init__(self): | |
self.cards = [] | |
self.constructDeck() | |
self.shuffled = 0 | |
self.shuffleDeck() | |
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
import os | |
import re | |
# Folder Locations | |
_folder1 = ["My Documents", r'C:\Users\jjeskiewicz\Documents'] | |
_folder2 = ["Joe", r'C:\1_jjeskiewicz\Joe'] | |
_folder3 = ["CVS Top", r'C:\1_jjeskiewicz\CvsFolders'] | |
# List of Folder Locations. For this version of the app, keep less than 10. | |
stages = [_folder1, _folder2, _folder3] |