«beautifulsoup» etiketlenmiş sorular

Beautiful Soup, HTML / XML ayrıştırmak için bir Python paketidir. Bu paketin en son sürümü, bs4 olarak içe aktarılan sürüm 4'tür.


5
python BeautifulSoup ayrıştırma tablosu
Python requestsve BeautifulSoup öğreniyorum . Bir egzersiz için, hızlı bir NYC park bileti ayrıştırıcısı yazmayı seçtim. Oldukça çirkin bir html yanıtı alabiliyorum. lineItemsTableTüm biletleri almam ve ayrıştırmam gerekiyor . Buraya gidip https://paydirect.link2gov.com/NYCParking-Plate/ItemSearchbir NYplaka girerek sayfayı yeniden üretebilirsinizT630134C soup = BeautifulSoup(plateRequest.text) #print(soup.prettify()) #print soup.find_all('tr') table = soup.find("table", { "class" : "lineItemsTable" …

8
ImportError: BeautifulSoup adlı modül yok
BeautifulSoup'u easy_install kullanarak kurdum ve aşağıdaki komut dosyasını çalıştırmaya çalışıyorum from BeautifulSoup import BeautifulSoup import re doc = ['<html><head><title>Page title</title></head>', '<body><p id="firstpara" align="center">This is paragraph <b>one</b>.', '<p id="secondpara" align="blah">This is paragraph <b>two</b>.', '</html>'] soup = BeautifulSoup(''.join(doc)) print soup.prettify() Ama bunun neden olduğundan emin değilim Traceback (most recent call last): File …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.