![]() |
Python' da veri çekme - Baskı Önizleme +- Rengaver (https://rengaver.com) +-- Forum: Yazılım Dersleri (https://rengaver.com/forum-yazilim-dersleri) +--- Forum: Python (https://rengaver.com/forum-python) +--- Konu Başlığı: Python' da veri çekme (/konu-python-da-veri-cekme) |
Python' da veri çekme - Rengaver - 01-20-2021 Python'da bir siteden veri çekmek çok basit. Kod: from urllib.request import urlopen Kod: data = urlopen("http://rengaver.com").read().decode('utf-8', 'replace') |