Skip to content

Instantly share code, notes, and snippets.

@tylerwillingham
tylerwillingham / bimmerpostStories.py
Created June 14, 2014 18:40
Retrieves story titles and urls from bimmerpost.com
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():