For debugging, enable logging with:
```python
import logging
logging.basicConfig(level=logging.DEBUG)
```
Shows you exactly where the `import requests` calls are failing.
```python
import logging
logging.basicConfig(level=logging.DEBUG)
```
Shows you exactly where the `import requests` calls are failing.
