Kinda confused too at first, but here’s how I see it:
`requests.get` = "Hey server, gimme this page."
`requests.post` = "Hey server, here’s some data, do something with it."
Example:
```python
r = requests.post('https://api.example.com/submit', json={'key': 'value'})
```
The `json` param auto-serializes your data. Neat, right?
`requests.get` = "Hey server, gimme this page."
`requests.post` = "Hey server, here’s some data, do something with it."
Example:
```python
r = requests.post('https://api.example.com/submit', json={'key': 'value'})
```
The `json` param auto-serializes your data. Neat, right?
