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
#!/usr/bin/env python | |
""" Scrape WDRV looking for non-eagles songs with "easy" in the title """ | |
import requests | |
import datetime | |
from bs4 import BeautifulSoup | |
import re | |
base_url = 'http://wdrv.com/wdrv-music-logs/' | |
payload = {} |