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 random | |
| class Card(object): | |
| #"""Represents the values of the cards.""" | |
| def __init__(self, suit, facevalue): | |
| self.suit = suit | |
| self.facevalue = facevalue | |
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 asyncio | |
| import requests | |
| import aiohttp | |
| from bs4 import BeautifulSoup | |
| from guessit import guessit | |
| from progressbar import ProgressBar, UnknownLength | |