6 lines
118 B
Python
6 lines
118 B
Python
import requests
|
|
|
|
URL = "https://cs.finescale.com/fsm/m/online/1581353.aspx"
|
|
page = requests.get(URL)
|
|
|
|
print(page.text) |