with Python # -*- coding: utf-8 -*- # * auto-parsing DB import requests from bs4 import BeautifulSoup import time import csv from selenium import webdriver from selenium.webdriver.common.keys import Keys import os def eliminate_space(string): string = string.replace("\t", "") string = string.replace("\n", "") string = string.replace("\r", "") string = string.replace("\xa0", "") string = string.r..