remove schedule dependency, as it is failing

This commit is contained in:
Dobromir Popov 2024-04-18 02:12:26 +03:00
parent fa43c028f5
commit 1d455aaba2
2 changed files with 12 additions and 5 deletions

10
.vscode/tasks.json vendored
View File

@ -89,8 +89,14 @@
{ {
"label": "conda-activate", "label": "conda-activate",
"type": "shell", "type": "shell",
"command": "conda activate py && echo 'Activated Conda Environment (py)!'", "command": "source ~/miniconda3/etc/profile.d/conda.sh && conda activate py && echo 'Activated Conda Environment (py)!'",
"problemMatcher": [] "problemMatcher": [],
"options": {
"shell": {
"executable": "/bin/bash",
"args": ["-c"]
}
}
} }
] ]
} }

View File

@ -4,6 +4,7 @@ import schedule
import time import time
def check_new_pairs(): def check_new_pairs():
print("Checking for new pairs...")
url = "https://www.dextools.io/" url = "https://www.dextools.io/"
url = "https://www.dextools.io/app/en/bnb/pool-explorer" url = "https://www.dextools.io/app/en/bnb/pool-explorer"
response = requests.get(url) response = requests.get(url)