我正在尝试开发一个网络爬虫,该网络爬虫可以从StockX的运动鞋上收集信息。这是我的代码。
def SneakersInfoScraper():
# Basic sneaker information
time.sleep(2)
driver = webdriver.Chrome(path)
driver.get("https://stockx.com/nike-air-air-jordan-3-jth")
Model_name = driver.find_element_by_xpath(
'//*[@id="product-header"]/div[1]/div/h1'
).text
# Retrieves the name of the Model
print(Model_name)
print("=" * 50)
Color_Sneaker = driver.find_element_by_xpath('//div[@class="detail"][2]/span').text
# Retrieves the color of the sneaker
print(Color_Sneaker)
print("=" * 50)
Retail_Price = driver.find_element_by_xpath('//div[@class="detail"][3]/span').text
# Retrieves the release date of the model
print(Retail_Price)
print("=" * 50)
Release_date = driver.find_element_by_xpath('//div[@class="detail"][4]/span').text
# Retrieves the release date of the model
print(Release_date)
print("=" * 50)
OtherPriceInfo = driver.find_elements_by_xpath('//div[@class="gauges"]')
for Each_Price_Info in OtherPriceInfo:
Price_Premium = Each_Price_Info.find_element_by_xpath(
'//*[@id="root"]/div[1]/div[2]/div[2]/div[8]/div/div/div/div[3]/div[2]/div[2]/div[3]'
).text
print(Price_Premium)
print("=" * 50)
它像黄油一样光滑,直到碰到OtherPriceInfo变量,然后设置for循环。在输出中,我可以看到我的格式被完全弄乱了,我也不知道为什么。 错误:
... print("=" * 50)
... OtherPriceInfo = driver.find_elements_by_xpath('//div[@class="gauges"]')
... for Each_Price_Info in OtherPriceInfo:
... Price_Premium = Each_Price_Info.find_element_by_xpath(
... '//*[@id="root '//*[@id="root div/d '//*[@id="root '//*[@id="ro
File "<stdin>", line 27
'//*[@id="root '//*[@id="root div/d '//*[@id="root '//*[@id="ro
^
SyntaxError: invalid syntax
>>> print(Price_Premium)
File "<stdin>", line 1
print(Price_Premium)
^
IndentationError: unexpected indent
>>> print("=" * 50)
File "<stdin>", line 1
print("=" * 50)
^
IndentationError: unexpected indent
有人可以建议如何防止这种情况发生吗?这是python错误吗?
答案 0 :(得分:0)
检查这两个功能,在缩进方面在视觉上都相同,但在空间上在逻辑上有所不同...因此,需要使用这些类型的编辑器,这些编辑器可以分别显示空格和制表符空格...
因此,再次检查您的代码...这是大多数python开发人员通常发生的问题。我找到了解决此问题的方法。