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
Windows Registry Editor Version 5.00 | |
; I like Console2 as my command prompt. | |
; This files adds "Open Console2 Here" to the rightclick menu when you click on a folder. | |
; I installed Console2 in C:\Console2 | |
; -d specifies which directory to open, %V passes the one where you right clicked in | |
; no clue what the ,0 is after icon. Probably the first one it finds? Whatever, it works. | |
[HKEY_CLASSES_ROOT\Directory\shell\console2] | |
@="Open Console2 here" |
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 openpyxl | |
import re | |
wb = openpyxl.load_workbook('file01.xlsx') | |
# print(wb.sheetnames) | |
ws = wb["Sheet1"] | |
number_rows = ws.max_row | |
# Set Column number here ! |
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 sys | |
import requests | |
import os | |
import re | |
from urllib.request import urlopen | |
from bs4 import BeautifulSoup | |
# changed script from | |
# https://www.reddit.com/r/declutter/comments/j6ts24/python_script_to_calculate_average_sell_price_of/ |