Skip to content

Instantly share code, notes, and snippets.

@itrewm
Created October 16, 2023 18:33
Show Gist options
  • Save itrewm/3594d70a1df6f287deb6aeefceb53c1b to your computer and use it in GitHub Desktop.
Save itrewm/3594d70a1df6f287deb6aeefceb53c1b to your computer and use it in GitHub Desktop.
free tether to toman api | ای پی آی تبدیل تتر به تومان
import requests
from bs4 import BeautifulSoup
url = 'https://wallex.ir/calculator/usdt-tmn'
response = requests.get(url)
response.raise_for_status()
html = response.text
soup = BeautifulSoup(html, 'html.parser')
elements = soup.find_all('p', class_='MuiTypography-root MuiTypography-body2 mui-mmyoxq')
value = elements[2].find('span').text
print(value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment