add a feature to set profile picture
you will need to use requests no error handling
prototype:
requests.post(f"https://scratch.mit.edu/site-api/users/all/{sess.username}/",
headers=sess._headers, cookies=sess._cookies,
files={"image": pfp_path.read_bytes()})
add a feature to set profile picture
you will need to use requests no error handling
prototype: