在使用Selenium Scraper(Python)时消除%符号 [英] Eliminate % Symbol While Using Selenium Scraper (Python)

查看:89
本文介绍了在使用Selenium Scraper(Python)时消除%符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面是一个硒纸刮板,它在此网站页面的不同选项卡中循环显示(

Below is a selenium web scraper that loops through the different tabs of this website page (https://www.fangraphs.com/leaders.aspx?pos=all&stats=bat&lg=all&qual=y&type=8&season=2018&month=0&season1=2018&ind=0), selects the "export data" button, downloads the data, adds a yearid column, then loads the data into a MySQL table.

import sys
import pandas as pd
import os
import time
from datetime import datetime
from selenium import webdriver
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
from sqlalchemy import create_engine


button_text_to_url_type = {
    'dashboard': 8,
    'standard': 0,
     'advanced': 1,
     'batted_ball': 2,
     'win_probability': 3,
     'pitch_type': 4,
     'pitch_values': 7,
     'plate_discipline': 5,
     'value': 6
}

download_dir = os.getcwd()
profile = FirefoxProfile("C:/Users/PATHTOFIREFOX")
profile.set_preference("browser.helperApps.neverAsk.saveToDisk", 'text/csv')
profile.set_preference("browser.download.manager.showWhenStarting", False)
profile.set_preference("browser.download.dir", download_dir)
profile.set_preference("browser.download.folderList", 2)
driver = webdriver.Firefox(firefox_profile=profile)


today = datetime.today()
for button_text, url_type in button_text_to_url_type.items():

    default_filepath = os.path.join(download_dir, 'Fangraphs Leaderboard.csv')
    desired_filepath = os.path.join(download_dir,
                                    '{}_{}_{}_Leaderboard_{}.csv'.format(today.year, today.month, today.day,
                                                                         button_text))

    driver.get(
        "https://www.fangraphs.com/leaders.aspx?pos=all&stats=bat&lg=all&qual=0&type={}&season=2018&month=0&season1=2018&ind=0&team=&rost=&age=&filter=&players=".format(
            url_type))
    driver.find_element_by_link_text('Export Data').click()
    if os.path.isfile(default_filepath):
        os.rename(default_filepath, desired_filepath)
        print('Renamed file {} to {}'.format(default_filepath, desired_filepath))
    else:
        sys.exit('Error, unable to locate file at {}'.format(default_filepath))

    df = pd.read_csv(desired_filepath)
    df["yearid"] = datetime.today().year
    df.to_csv(desired_filepath)

    engine = create_engine("mysql+pymysql://{user}:{pw}@localhost/{db}"
                           .format(user="walker",
                                   pw="password",
                                   db="data"))
    df.to_sql(con=engine, name='fg_test_hitting_{}'.format(button_text), if_exists='replace')

time.sleep(10)
driver.quit()

该抓取工具运行完美,但是,当我下载数据时,某些列下载的数据在整数(即25%)后带有一个%符号,这会影响我在MySQL中的格式设置.将数据抓取到Pandas数据框中时,是否可以更改包含%符号的列,使其仅显示整数?如果是这样,我将如何在我创建的循环中实现此目标,以从网站上的各个选项卡中抓取数据?我还想从此过程中排除数据的第一行,因为那是我保留列名的行.预先感谢!

The scraper works perfectly, however, when I download the data, some columns download data with a % sign after an integer (i.e., 25%) which throws off my formatting in MySQL. When scraping the data into a Pandas data frame, is it possible to alter the columns that contain the % symbol so that it just shows the integer? If so, how would I implement this in the loop I created to scrape data from the various tabs on the website? I would also like to exclude the first row of data from this process since that is the row where I keep my column names. Thanks in advance!

推荐答案

使用 查看全文

登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆