Okay i have a very simple question but i couldnt find out how to solve it by any chance. I have a script that fetches some numbers out of the steam website, then compares them. i want to use discord.py to send me that results on discord. i already have the bot on discord, but i coulndt figure out how to just send a message and not react to a message sent by a user or anything. This is my code:
Float = float(Float[8:])
if Float <= 0.01:
element2 = driver.find_element_by_xpath('/html/body/div[1]/div[7]/div[2]/div[2]/div[4]/div[1]/div[3]/div[4]/div[4]/div[2]/div[2]/div[2]/span/span[1]')
Price = element2.text
print("Snipe found: \n"
"Mag-7 Carbon Fiber Factory New with Float:\n"
, Float, '\n', Price)
i also have some selenium in it, but that is not a problem. the variable "Float" is also defined before. i simply want to send the stuff that is in the print
function as a message to a discord server.
is this possible by any chance?
Thanks for the help