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
""" | |
Download all files from Gumroad directory | |
""" | |
import re | |
import json | |
import requests | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC |
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
""" | |
A QUICK FIX FOR: https://github.com/sabren/ceomatic/blob/master/wxappbars.py | |
I comment this line: if not _registeredWindowInfo.has_key(appbarWindow): | |
has_key is error. Someone may be able fixing that. I just made a quick for quick work | |
This lets you create win32 application bars with wxPython. | |
(Application bars are windows that dock to the desktop and stay visible when | |
you maximize other windows, like the windows task bar.) |