9 lines
140 B
Python
9 lines
140 B
Python
import requests
|
|
import logging
|
|
|
|
url = "https://appletune.fundor333.com/weeklynote/anilist/gen"
|
|
|
|
r = requests.get(url)
|
|
|
|
logging.info(r.text)
|