Update extract.py
Browse files- extract.py +2 -3
extract.py
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
from selenium import webdriver
|
2 |
-
from selenium.webdriver.common.by import By
|
3 |
-
from selenium.webdriver.common.keys import Keys
|
4 |
-
from selenium.webdriver.chrome.service import Service
|
5 |
from selenium.common.exceptions import WebDriverException
|
6 |
from bs4 import BeautifulSoup
|
7 |
import time
|
8 |
import random
|
|
|
|
|
9 |
|
10 |
# Lista de User Agents para rotar
|
11 |
user_agents = [
|
|
|
1 |
from selenium import webdriver
|
|
|
|
|
|
|
2 |
from selenium.common.exceptions import WebDriverException
|
3 |
from bs4 import BeautifulSoup
|
4 |
import time
|
5 |
import random
|
6 |
+
import logging
|
7 |
+
from fp.fp import FreeProxy
|
8 |
|
9 |
# Lista de User Agents para rotar
|
10 |
user_agents = [
|