Short answer: `requests.post` = send data. `requests.get` = ask for data.
Longer answer: POST requests are for modifying stuff on the server. GET is for reading.
Example:
```python
response = requests.post('https://example.com/api', data={'action': 'delete'})
```
If you’re visual, [HTTPCat](https://http.cat/) helps debug status codes.
Longer answer: POST requests are for modifying stuff on the server. GET is for reading.
Example:
```python
response = requests.post('https://example.com/api', data={'action': 'delete'})
```
If you’re visual, [HTTPCat](https://http.cat/) helps debug status codes.
