Skip to content

Commit c1a27ee

Browse files
committed
Update ksu_scrape.py
Fixed a typo
1 parent 88a64df commit c1a27ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

2 ksu scrape/ksu_scrape.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
'''
22
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.
34
'''
45
from bs4 import BeautifulSoup
56
import requests
67
import csv
78
from datetime import datetime
89

910

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
1112

1213
soup = BeautifulSoup(source, 'lxml')
1314

0 commit comments

Comments
 (0)