diff options
author | David Arroyo <darroyolpz@users.noreply.github.com> | 2020-09-21 20:33:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-21 20:33:36 +0100 |
commit | a315fb04096a9cbd15184823e5caeae5a2168895 (patch) | |
tree | aecbbe1cdc1e9be0874f451790eec045eb427254 | |
parent | 6d406cc79786423ddfee4edf98061f7c67aca5cf (diff) |
Keywords and path updated
-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 9d074d8..bf87449 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', 'FTX', 'twt', 'trust']
+key_words = ['list', 'token sale', 'open trading', 'opens trading', 'perpetual', 'defi', 'uniswap']
# Open old database file
-path = "/home/pi/db.xlsx"
+path = "/home/pi/OpenAlpha/db.xlsx"
df = pd.read_excel(path)
# Empty list
|