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

16
.vscode/tasks.json vendored
View File

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

View File

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