From 3588bee494673f70596c30c588941b89c8c95aa2 Mon Sep 17 00:00:00 2001 From: Brendan McDevitt Date: Wed, 2 Aug 2017 17:24:22 -0400 Subject: [PATCH] Old_Stats class is complete --- pull_box_score.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pull_box_score.py b/pull_box_score.py index a1b9dec..32ecdfd 100755 --- a/pull_box_score.py +++ b/pull_box_score.py @@ -1,12 +1,10 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 from bs4 import BeautifulSoup import requests, urllib, os #### FIRST THREE YEARS 2010/2011/2012 ARE DIFFERENT WAYS TO RETRIEVE THAN 13-17 - - class Old_Stats: 'Retrieve the mens volleyball statistics data from years 2010, 2011, 2012 for MAMVIC NAIA Cardinal Stritch' @@ -47,7 +45,3 @@ class Old_Stats: response = requests.get(self.get_box_score_links()[url_step]) with open('./data/' + filename, "wb") as code: code.write(response.content) - -old_stats = Old_Stats() - -old_stats.download_html_links()