Преглед на файлове

Merging Marco's pull request

David Leonard преди 10 години
родител
ревизия
66de6d9aae
променени са 2 файла, в които са добавени 9 реда и са изтрити 14 реда
  1. 6 1
      hackathon_starter/hackathon/scripts/scraper.py
  2. 3 13
      hackathon_starter/hackathon/unittests/testgithub.py

+ 6 - 1
hackathon_starter/hackathon/scripts/scraper.py

@@ -1,6 +1,11 @@
+'''
+scraper.py contains various methods for scraping
+HTML content and packaging into dictionaries.
+'''
+
 import requests
-from bs4 import BeautifulSoup
 import itertools 
+from bs4 import BeautifulSoup
 
 def steamDiscounts():
 	req = requests.get('http://store.steampowered.com/search/?specials=1#sort_by=_ASC&sort_order=ASC&specials=1&page=1')

Файловите разлики са ограничени, защото са твърде много
+ 3 - 13
hackathon_starter/hackathon/unittests/testgithub.py