Yo, sessions are KEY if you’re making lots of calls. Like:
```python
with requests.Session() as s:
s.get(url)
```
Saves you from re-establishing connections every time.
For 429s, backoff is your friend. `time.sleep()` is ugly but works in a pinch.
```python
with requests.Session() as s:
s.get(url)
```
Saves you from re-establishing connections every time.
For 429s, backoff is your friend. `time.sleep()` is ugly but works in a pinch.
