I am having trouble scraping info from the url http://csgo-stats.com/epsilon-/ but due to the way the website handles things BeautifulSoup is only collecting data from the root page, aka http://csgo-stats.com
Is there a redirect going on thats tripping up BS? I can see in the html that BS outputs that it's trying to load my data but BS captures it too quickly:
<main class="site-content" id="content">
<div class="loading-spinner" data-request="epsilon-" id="load">
Loading
</div>
Here is the code I'm working with just in case it's needed:
from urllib.request import urlopen
from bs4 import BeautifulSoup
url = "http://csgo-stats.com/Epsilon-/"
soup = BeautifulSoup(urlopen(url))
print(soup.prettify())