Write a python program to get http request information from www.facebook.com and open it from within your program.
Answers
Answered by
1
Answer:
So, to request a response from the server, there are mainly two methods: GET: to request data from the server. POST: to submit data to be processed to the server. Here is a simple diagram which explains the basic concept of GET and POST methods. Now, to make HTTP requests in python, we can use several HTTP libraries like: httplib; urllib; requests. The most elegant and simplest of above listed libraries is Requests. We will be using
Explanation:
Similar questions