A
Admin
Yönetici
Yönetici
Merhaba. Şimdi yazdığım kod, requests ile bs4 ile dolar bilgisini bizim programımıza çekiyor.
```python
import requests
from bs4 import BeautifulSoup
url = ""
r = requests.get(url)
soup = BeautifulSoup(r.content, "html.parser")
price = soup.****("span",{"class","LastPrice downRed"})
print(price.text)
```
Tama iyi hoş. Program sorunsuz. Ama ben bunu pek de karmaşık olmayan bir şekilde tkinter ile yazmak istiyorum...
```python
import requests
from bs4 import BeautifulSoup
url = ""
r = requests.get(url)
soup = BeautifulSoup(r.content, "html.parser")
price = soup.****("span",{"class","LastPrice downRed"})
print(price.text)
```
Tama iyi hoş. Program sorunsuz. Ama ben bunu pek de karmaşık olmayan bir şekilde tkinter ile yazmak istiyorum...