We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88a64df commit c1a27eeCopy full SHA for c1a27ee
2 ksu scrape/ksu_scrape.py
@@ -1,13 +1,14 @@
1
'''
2
TO use this code, you will first need to install the three packages being imported below using pip or a manual install method.
3
+To use this code, you will first need to install the three packages being imported below using pip or a manual install method.
4
5
from bs4 import BeautifulSoup
6
import requests
7
import csv
8
from datetime import datetime
9
10
-source = requests.get('https://news.kennesaw.edu/news-releases/?&categories=news%20releases&year=2019').text
11
+source = requests.get('https://news.kennesaw.edu/news-releases/?&categories=news%20releases&year=2020').text
12
13
soup = BeautifulSoup(source, 'lxml')
14
0 commit comments