Skip to content

Instantly share code, notes, and snippets.

View davFaithid's full-sized avatar
🚲
I’m busy a lot.

davFaithid

🚲
I’m busy a lot.
View GitHub Profile
@davFaithid
davFaithid / popsongs.py
Last active March 17, 2021 01:25
Compile a list of the most popular songs from different services
import feedparser
print('---------------------------------------------------\nBillboard Hot 100 Top 5\n---------------------------------------------------')
import billboard
hot100 = billboard.ChartData('hot-100')
entry = hot100[0]
print('Number 1:',entry.title,'-',entry.artist)
entry = hot100[1]
print('Number 2:',entry.title,'-',entry.artist)
entry = hot100[2]
@davFaithid
davFaithid / ._Streamages
Last active January 31, 2026 14:20
Download Netflix, Amazon, and Hulu Images
Here because I don't want the gist to be titled .gitignore lol