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",
|
"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"]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user