Skip to content

Instantly share code, notes, and snippets.

@samsee
Last active March 1, 2020 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsee/ff859d3ba09b6ec33b402910b6e63f58 to your computer and use it in GitHub Desktop.
Save samsee/ff859d3ba09b6ec33b402910b6e63f58 to your computer and use it in GitHub Desktop.
restock_bot_parts
def elvst_check(res):
soup = BeautifulSoup(res.text, 'html.parser')
stock_a = soup.find("a", class_="btn_dshop buying position_top")
if stock_a == None:
return False
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment