This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
import time | |
import random | |
import sys | |
def print_same_line(text): | |
sys.stdout.write('\r') | |
sys.stdout.flush() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import random | |
import re | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from selenium.common.exceptions import NoSuchElementException, StaleElementReferenceException | |
from chatterbot.trainers import ListTrainer | |
from chatterbot import ChatBot | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dash | |
from dash.dependencies import Output, Event, Input | |
import dash_core_components as dcc | |
import dash_html_components as html | |
import plotly | |
import plotly.graph_objs as go | |
from collections import deque | |
import datetime | |
import pandas as pd | |
from dataGrab import DataGrab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#1431, 25 | |
#175, 27 | |
""" | |
Select right side of the screen where text editor is and type one line | |
After typing on line go back to terminal and ask for user to hit Enter to continue on to the | |
next line. | |
""" | |
import pyautogui | |
import random |