Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
mason-today-web
Commits
9d3d7ec3
Commit
9d3d7ec3
authored
Apr 26, 2018
by
Landon DeCoito
Browse files
getconnectedscript is now pep8 compliant
parent
8e6136c7
Changes
1
Show whitespace changes
Inline
Side-by-side
mason-today/getconnectedscript.py
View file @
9d3d7ec3
...
...
@@ -5,12 +5,14 @@ import feedparser
# TODO: ADD "getconnected" ATTRIBUTE TO LOAD_DATA DICTLIST
def
splitAndConvertTime
(
strin
):
strin
=
strin
.
replace
(
" "
,
""
)
strin
=
strin
.
split
(
"-"
)
returnlist
=
[
""
,
""
]
returnlist
=
[
""
,
""
]
returnlist
[
1
]
=
convertTime
(
strin
[
1
])
if
not
(
strin
[
0
][
-
2
:]
==
"am"
or
strin
[
0
][
-
2
:]
==
"AM"
)
and
not
(
strin
[
0
][
-
2
:]
==
"pm"
or
strin
[
0
][
-
2
:]
==
"PM"
):
if
not
(
strin
[
0
][
-
2
:]
==
"am"
or
strin
[
0
][
-
2
:]
==
"AM"
)
\
and
not
(
strin
[
0
][
-
2
:]
==
"pm"
or
strin
[
0
][
-
2
:]
==
"PM"
):
if
(
strin
[
1
][
-
2
:]
==
"am"
):
returnlist
[
0
]
=
convertTime
(
strin
[
0
]
+
"am"
)
else
:
...
...
@@ -19,8 +21,10 @@ def splitAndConvertTime(strin):
returnlist
[
0
]
=
convertTime
(
strin
[
0
])
return
returnlist
def
load_getconn_data
():
feedtext
=
requests
.
get
(
"https://getconnected.gmu.edu/events/events.rss"
).
text
feedtext
=
requests
.
get
(
"https://getconnected.gmu.edu/events/events.rss"
).
text
feedtext
=
cleanup
(
feedtext
)
# this calls the RSS feed parser from !feedparser
...
...
@@ -35,7 +39,8 @@ def load_getconn_data():
title
=
entry
.
title
# print title
sumdetsoup
=
BeautifulSoup
(
entry
.
summary_detail
[
"value"
].
encode
(
"utf-8"
),
"html.parser"
)
sumdetsoup
=
BeautifulSoup
(
entry
.
summary_detail
[
"value"
]
.
encode
(
"utf-8"
),
"html.parser"
)
location
=
[
sumdetsoup
.
div
.
span
.
text
]
# print location
...
...
@@ -43,13 +48,15 @@ def load_getconn_data():
description
=
sumdetsoup
.
find_all
(
"div"
)[
1
].
text
# print description
datetime
=
sumdetsoup
.
b
.
text
# print datetime
# this handles events which start and end on the same day
if
(
datetime
.
count
(
"("
)
==
1
):
try
:
datesplit
=
datetime
.
split
(
", "
)
# parses out date info
weekday
=
datesplit
[
0
]
temp
=
datesplit
[
1
].
split
(
" "
)
monthday
=
temp
[
1
]
...
...
@@ -61,11 +68,17 @@ def load_getconn_data():
timestart
=
parsedtimelist
[
0
]
timestop
=
parsedtimelist
[
1
]
dictlist
.
append
({
"id"
:
uniqueid
,
"title"
:
title
,
"dayofweek"
:
weekday
,
"dayofmonth"
:
monthday
,
"month"
:
month
,
"year"
:
year
,
"timestart"
:
timestart
,
"timestop"
:
timestop
,
"location"
:
location
,
"description"
:
description
})
dictlist
.
append
({
"id"
:
uniqueid
,
"title"
:
title
,
"dayofweek"
:
weekday
,
"dayofmonth"
:
monthday
,
"month"
:
month
,
"year"
:
year
,
"timestart"
:
timestart
,
"timestop"
:
timestop
,
"location"
:
location
,
"description"
:
description
})
except
Exception
as
e
:
dictlist
.
append
({
"id"
:
uniqueid
,
"error"
:
str
(
e
)})
# this handles events which start on one day and end on another
else
:
try
:
datesplit
=
datetime
.
split
(
" - "
)
# getting the information for the start day/time
...
...
@@ -86,14 +99,20 @@ def load_getconn_data():
timestop
=
datesplit
[
1
].
split
(
"("
)[
1
][:
-
1
]
timestop
=
convertTime
(
timestop
)
dictlist
.
append
({
"id"
:
uniqueid
,
"title"
:
title
,
"dayofweek"
:
weekday
,
"dayofmonth"
:
monthday
,
"month"
:
month
,
"year"
:
year
,
"timestart"
:
timestart
,
"timestop"
:
timestop
,
"location"
:
location
,
"description"
:
description
,
"enddayofweek"
:
endweekday
,
"enddayofmonth"
:
endmonthday
,
"endmonth"
:
endmonth
,
"endyear"
:
endyear
})
dictlist
.
append
({
"id"
:
uniqueid
,
"title"
:
title
,
"dayofweek"
:
weekday
,
"dayofmonth"
:
monthday
,
"month"
:
month
,
"year"
:
year
,
"timestart"
:
timestart
,
"timestop"
:
timestop
,
"location"
:
location
,
"description"
:
description
,
"enddayofweek"
:
endweekday
,
"enddayofmonth"
:
endmonthday
,
"endmonth"
:
endmonth
,
"endyear"
:
endyear
})
except
Exception
as
e
:
dictlist
.
append
({
"id"
:
uniqueid
,
"error"
:
str
(
e
)})
return
dictlist
# dictlist.append({"id":uniqueid, "title":entry_title, "dayofweek":weekday, "dayofmonth":monthday, "month":month, "year":year, "timestart":timestart, "timestop":timestop, "location":location, "description":description})
# This was intended to figure out what objects are in each entry and what appears only sometimes
# The results are:
# Every event has:
# -------summary
# -------published_parsed
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment