こんにちは皆、今日オンラインで賭けるサイトのように、一貫して変化しているウェブサイトからどのようにデータを掻き集めるのですか?私はこのコードを実行すると、私はPythonを使用して一貫して変化するウェブページの要素にアクセスする
import requests
from bs4 import BeautifulSoup
def ColorRequest():
url = 'http://csgoroll.com/#/' # Could add a + pls str(pagesomething) to add on to the url so that it would update
sourcecode = requests.get(url) #requests the data from the site
plaintext = sourcecode.text #imports all of the data gathered
soup = BeautifulSoup(plaintext, 'html.parser') #This hold all of the data, and allows you to sort through all of the data, converts it
for links in soup.findAll():
print(links)
ColorRequest()
を書いたページをアップするものではなく、私は、ページのHTML出力を得るが、私は、ページのロード後に表示されている要素を探しています。
経験豊富なPython開発者はこれまでにこの問題にぶつかり、経験の浅いプログラマーを助けてくれますか?