Reported by MysteriousJ on discord. Running the script for the first time gave him:
> python send_mail.py
Traceback (most recent call last):
File "F:\files\code\projects\handmade_newsletter\send-mail\send_mail.py", line 46, in <module>
import requests
ModuleNotFoundError: No module named 'requests'
And to fix it you need to use pip:
python -m pip install requests
I prefer to not rely on it.
Reported by `MysteriousJ` on discord. Running the script for the first time gave him:
```
> python send_mail.py
Traceback (most recent call last):
File "F:\files\code\projects\handmade_newsletter\send-mail\send_mail.py", line 46, in <module>
import requests
ModuleNotFoundError: No module named 'requests'
```
And to fix it you need to use pip:
`python -m pip install requests`
I prefer to not rely on it.
abner
self-assigned this 2023-09-22 19:02:39 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Reported by
MysteriousJon discord. Running the script for the first time gave him:And to fix it you need to use pip:
python -m pip install requestsI prefer to not rely on it.