base_url = "https://danbooru.donmai.us/posts.json"
params = {
"tags": f"md5:{md5}",
"limit": 1,
}
request = requests.get(base_url, params=params, timeout=10)
data = request.json()
I'm organizing some shit I've downloaded from this site, I was just wondering what parameter I need to change to include deleted posts in my search, if its not by default.
