Skip to content

Commit

Permalink
Removed St. Louis queue time fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucca committed Mar 3, 2021
1 parent 0cd20dc commit 6f0a754
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions experiments/queuetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,3 @@

nuremberg_time = ''.join(timestr)
print(nuremberg_time)

# St. Louis

print("Here's the stlouis_time:")

things = soup.div.div.i.i.i.div.div.a.text

timestr = []
i = 125
while True:
newchar = things[i]
if newchar != ' ':
timestr.append(newchar)
i += 1
else:
break

stlouis_time = ''.join(timestr)
print(stlouis_time)

0 comments on commit 6f0a754

Please sign in to comment.