HomePosts Tagged "flask"
Posted in Back-End & Database, Python

Flask RestAPI with requests

Introduction: Requests is a Python module that you can use to send all kinds of HTTP requests. It is an easy-to-use library with a lot of features ranging from passing parameters in URLs to sending custom headers and SSL Verification. we can use requests library very easily like this. import requestsreq = requests.get(‘https://www.excellencetechnologies.in/’) Now let’s install […]