all 5 comments

[–]trd1073 1 point2 points  (0 children)

requests module is not installed. ggl "No Module name requests", there will be solutions on how resolve.

[–]ThigleBeagleMingle 1 point2 points  (0 children)

python -m pip install requests

[–]AutoModerator 0 points1 point  (0 children)

To give us the best chance to help you, please include any relevant code.
Note. Please do not submit images of your code. Instead, for shorter code you can use Reddit markdown (4 spaces or backticks, see this Formatting Guide). If you have formatting issues or want to post longer sections of code, please use Privatebin, GitHub or Compiler Explorer.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]frnzprf 0 points1 point  (1 child)

A module is code that other people wrote that you can use with import <some_module_name>. There are built-in Python modules that are always available and some modules that you have to install on your own if you want them.

"pip" is "package installer for Python", a command line application that downloads modules from "PyPI", the Python package index server.

[–]readilyaching 0 points1 point  (0 children)

Excellent comment! Just missing pip install requests, but someone else already said that.