diff options
author | David Arroyo <darroyolpz@users.noreply.github.com> | 2020-08-11 20:34:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-11 20:34:49 +0100 |
commit | 862dbaa1cff5a19421c5806e80104b8a50f90629 (patch) | |
tree | e2521a4723773861c564b403d9523184c6efa197 | |
parent | 0d9f24ab5fa642fe898f586aa72f372274243c4c (diff) |
Code modification for rp
Path added
-rw-r--r-- | binance-scraping-bot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binance-scraping-bot.py b/binance-scraping-bot.py index bf350c3..10619e5 100644 --- a/binance-scraping-bot.py +++ b/binance-scraping-bot.py @@ -14,10 +14,10 @@ soup = BeautifulSoup(response.text, 'html.parser') news_list = soup.find_all(class_ = 'css-sbrje5')
# Create a bag of key words for getting matches
-key_words = ['list', 'token sale', 'open trading', 'opens trading', 'perpetual']
+key_words = ['list', 'token sale', 'open trading', 'opens trading', 'perpetual', 'FTX']
# Open old database file
-path = "C:/Users/d645daar/Documents/Codes/Binance Announcements/db.xlsx"
+path = "/home/pi/db.xlsx"
df = pd.read_excel(path)
# Empty list
|