This file contains 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 matplotlib.pyplot as plt | |
import numpy as np | |
# 100 linearly spaced numbers | |
x = np.linspace(-5,5,100) | |
# the users input | |
## REFORMATTING |
This file contains 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 | |
import os | |
# Settings | |
gameRange = (0, 5) # 0 is low E, 5 is high E. | |
strings = ["E", "A", "D", "G", "B", "e"] # works with other tunings too, i think | |
showOnlyFretboard = True | |
This file contains 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 requests | |
import csv | |
from bs4 import BeautifulSoup | |
import datetime | |
import requests | |
import re | |
import os | |
from selenium import webdriver | |
import pandas as pd |