diff options
-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
|