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
| [ | |
| { | |
| "rank": "1", | |
| "title": "War Pigs", | |
| "album": "Paranoid", | |
| "artist": "Black Sabbath", | |
| "albumYear": "1970", | |
| "rankOneYearAgo": "19", | |
| "rankTwoYearsAgo": "4", | |
| "timestamp": "2025-09-26 18:46:39", |
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
| [ | |
| { | |
| "rank": "1", | |
| "title": "Everlong", | |
| "album": "The Colour and the Shape", | |
| "artist": "Foo Fighters", | |
| "albumYear": "1997", | |
| "rankOneYearAgo": "2", | |
| "rankTwoYearsAgo": "3", | |
| "timestamp": "2024-09-13 18:08:46", |
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
| [ | |
| { | |
| "rank": "1", | |
| "title": "Master Of Puppets", | |
| "album": "Master Of Puppets", | |
| "artist": "Metallica", | |
| "albumYear": "1986", | |
| "rankOneYearAgo": "2", | |
| "rankTwoYearsAgo": "14", | |
| "timestamp": "2023-09-08 18:53:12", |
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
| [ | |
| { | |
| "rank": "1", | |
| "title": "Simple Man", | |
| "album": "(Pronounced 'Lĕh-'nérd 'Skin-'nérd)", | |
| "artist": "Lynyrd Skynyrd", | |
| "albumYear": "1973", | |
| "rankOneYearAgo": "3", | |
| "rankTwoYearsAgo": "10", | |
| "timestamp": "2022-09-30 19:00:00", |
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
| [ | |
| { | |
| "rank": "1", | |
| "title": "Killing In The Name", | |
| "album": "Rage Against The Machine", | |
| "artist": "Rage Against The Machine", | |
| "albumYear": "1992", | |
| "rankOneYearAgo": "7", | |
| "rankTwoYearsAgo": "3", | |
| "timestamp": "2021-09-24 18:58:00", |
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
| [ | |
| { | |
| "rank": "1", | |
| "title": "Everlong", | |
| "album": "The Colour and the Shape", | |
| "artist": "Foo Fighters", | |
| "albumYear": "1997", | |
| "rankOneYearAgo": "8", | |
| "rankTwoYearsAgo": "6", | |
| "timestamp": "2020-11-06 18:51:00", |
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
| [ | |
| { | |
| "rank": "1", | |
| "title": "Black", | |
| "album": "Ten", | |
| "artist": "Pearl Jam", | |
| "albumYear": "1991", | |
| "rankOneYearAgo": "2", | |
| "rankTwoYearsAgo": "3", | |
| "timestamp": "2019-09-13 18:57:13", |
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 subprocess | |
| a = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8', errors="ignore").split('\n') | |
| a = [i.split(":")[1][1:-1] for i in a if "All User Profile" in i] | |
| for i in a: | |
| try: | |
| results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8', errors="ignore").split('\n') | |
| results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b] | |
| try: | |
| print ("{:<30}| {:<}".format(i, results[0])) |