bs4

    0熱度

    3回答

    找到所有的<ul>後,我想進一步提取文字和href的。我對這一點HTML所特別關注的問題是,我需要大部分,但不是頁面中的所有<li>項目。我看到當我find_all(),我返回一個列表對象,它不允許我進一步導航它作爲湯對象。 例如,在下面的代碼片段,最終創造{'cityName': 'href',}一本字典,我曾嘗試: city_list = soup.find_all('ul', {'class

    0熱度

    1回答

    我剛剛開始使用Python進行編碼,我的朋友問我應用程序在網絡上找到特定的數據,很好地表示它。 我已經找到漂亮的網頁,其中包含數據,我可以找到基本信息,但接下來的挑戰是要深入。 雖然在Python 3.4使用BS4我已經達到了示範代碼: <tr class=" " somethingc1="" somethingc2="" somethingc3="" data-something="1" som

    1熱度

    3回答

    我用Chromedriver下載該文件,然後我想解析"chrome://downloads"獲取下載狀態,但是我無法獲取字符串,請參考下面的代碼和結果。我也在Chrome中檢查了HTML。我可以看到<span id="name">Noto-hinted (1).zip</span>,但是如果我使用view page source,我找不到字符串"Noto-hinted (1).zip"。這是<sp

    0熱度

    1回答

    假設我們有一些代碼: <tr class=" " somethingc1="" somethingc2="" somethingc3="" data-something="1" something="1something4" something_id="6something7"> <td class="text-center td_something"> <div> <span doo="t

    0熱度

    1回答

    我有問題。只與PYTHON2。 r = self.session.get('http://..................') print "CREATE BS" print datetime.now() soup = BeautifulSoup(r.content, 'html.parser') print "CREATE BS END" print datetime.now()

    0熱度

    2回答

    我的計劃是通過使用Bs4來獲取_AntiCsrfToken。 我有這個HTML在我的HTML來自 和我自己編寫的代碼是 token = soup.find('input', {'name':'_AntiCsrfToken'})['value']) print(token) ,但它給了我一個錯誤說 Traceback (most recent call last): File "C:

    -2熱度

    2回答

    我的目標是編寫一個可從網站檢索特定數據的python腳本。 具體我要提取這些數據: <span class="street-address" itemprop="streetAddress">191, Corso Peschiera</span> 和 <div itemprop="telephone" class="tel elementPhone">0184 662271</div> 只

    0熱度

    1回答

    我一直在使用bs4和Python進行練習,現在我已經陷入困境。 我的計劃是做一個如果 - 在那裏我想要做類似像 If(I find a value inside this html) Do This method Else: Do something else 否則狀態,我已經颳了一個HTML,我發現隨機它看起來像 - <div class="Talkinghand" d

    -1熱度

    1回答

    我需要從whoscored.com數據,但是當我輸入驗證碼 import requests from bs4 import BeautifulSoup as soup url = "https://www.whoscored.com/Statistics" page_html = requests.get(url) page_soup = soup(page_html.content, '

    1熱度

    1回答

    我正在嘗試創建一個刮刮維基百科頁面參考部分的URL的程序,但是,我遇到了隔離該標籤/類的問題。 ## Import required packages ## from urllib.request import urlopen from urllib.error import HTTPError from bs4 import BeautifulSoup import re selec