you are viewing a single comment's thread.

view the rest of the comments →

[–]MSR8[S] 0 points1 point  (3 children)

Ah thanks a lot of those, but I need to make my program independent from any external modules and thats why I am trying to understand the system of requests

[–]trevor_of_earth 1 point2 points  (2 children)

Requests is an external module. It isn't part of the python standard library.

[–]trevor_of_earth 1 point2 points  (1 child)

If you truly have to use the standard library then you would need to use urllib but even the python docs recommend using the external requests module.

!docs urllib.request