remove schedule dependency, as it is failing
This commit is contained in:
parent
fa43c028f5
commit
1d455aaba2
10
.vscode/tasks.json
vendored
10
.vscode/tasks.json
vendored
@ -89,8 +89,14 @@
|
||||
{
|
||||
"label": "conda-activate",
|
||||
"type": "shell",
|
||||
"command": "conda activate py && echo 'Activated Conda Environment (py)!'",
|
||||
"problemMatcher": []
|
||||
"command": "source ~/miniconda3/etc/profile.d/conda.sh && conda activate py && echo 'Activated Conda Environment (py)!'",
|
||||
"problemMatcher": [],
|
||||
"options": {
|
||||
"shell": {
|
||||
"executable": "/bin/bash",
|
||||
"args": ["-c"]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user