This lesson is a recap of the third section. You learned about:
- Authentication
- SSL Certificate Verification
- Performance
- Timeouts
- The Session Object
- Max Retries
Take the Quiz: Test your knowledge with our interactive “Python's Requests Library” quiz. You’ll receive a score upon completion to help you track your learning progress:
Interactive Quiz
Python's Requests LibraryTest your understanding of the Python Requests library for making HTTP requests and interacting with web services.
Congratulations, you made it to the end of the course! What’s your #1 takeaway or favorite thing you learned? How are you going to put your newfound skills to use? Leave a comment in the discussion section and let us know.
Chris Bailey RP Team on April 6, 2020
Hi @Ganesh Pai, Requests by default uses SSL. There is a method to turn verification off, which is covered in the previous video lesson “SSL Certificate Verification”. Here is a link to the Request Docs with more information regarding using SSL and how it is on by default. Requests uses a package called Certifi that will be installed when using pip, but may be a good practice to look for updates as certificates and such change. I hope this helps with what you are looking for.