- Send POST request to URL
- Solutions are small so they they don't need a whole directory at this point
import requests
r = requests.post("URL")
print(f"{r.text}")
python3 -c 'import requests; r = requests.post("URL"); print(r.text)'
curl -X POST URL
Up and at’m! Time to tackle your first mission of the day! Send a request to HQ to receive mission details!
Send the POST