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
from bs4 import BeautifulSoup | |
import requests | |
story_qty = int(raw_input('How many stories do you want to get? ')) | |
page = 1 | |
story_count = 0 | |
stories = [] | |
# Get the data to filter for a given page | |
def getPageData(): |