This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
import time | |
url = "https://skyharbor-server.net/api/sales?status=active&orderCol=nerg_sale_value&order=asc&limit=1000&collection=cybercitizens" | |
watchlist = [0,1,2,3,4,5,6,7,777,888] # replace with your own "numbers" you would like to watch | |
#TODO expand watch_list to include desired attributes | |
max_price = 50 #how much ergo would you pay for one of these things, max? | |
loop = True #change to "True" if you would like it to scan continuously | |
delay = 30 #delay between scans - do not make this too low |