Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. from selenium import webdriver
  2. from selenium.webdriver.common.by import By
  3. from selenium.common.exceptions import WebDriverException
  4. from selenium.webdriver.chrome.options import Options
  5. from bs4 import BeautifulSoup
  6. from datetime import date
  7. import re
  8. import pandas as pd
  9. import os
  10. import requests
  11. import json
  12. import csv
  13. import sys
  14. import numpy as np
  15. import datetime
  16. import sqlite3
  17. from selenium import webdriver
  18. from selenium.webdriver.chrome.options import Options
  19. import matplotlib.pyplot as plt
  20. from numpy import arange
  21. import seaborn as sns
  22. from mpl_toolkits.mplot3d import Axes3D
  23. from IPython.display import IFrame
  24. from adjustText import adjust_text
  25.  
  26. #webdriver setting up
  27. chrome_options = Options()
  28. chrome_options.add_argument('--headless')
  29. chrome_options.add_argument('--no-sandbox')
  30. chrome_options.add_argument('--disable-dev-shm-usage')
  31.  
  32. driver = webdriver.Chrome(chrome_options=chrome_options)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement