How to fetch API in Python 🔥

We can create Awesome Projects If we know how to fetch an API in python.

We all know python is the most easiest and widely used programming language even though it is slow.

so in this blog we will learn how to fetch an API in python.
we will use an A…


This content originally appeared on DEV Community and was authored by Vamsi Krishna

We can create Awesome Projects If we know how to fetch an API in python.

We all know python is the most easiest and widely used programming language even though it is slow.

so in this blog we will learn how to fetch an API in python.
we will use an API which will give us a list of words.

API -- Click Here

import requests
import json

# fetching API 
response_API = requests.get('https://www.randomlists.com/data/words.json')
data = response_API.text # gives in a text format

# converting it into json object
json_data = json.loads(data)

# getting list of words
words = json_data["data"]
print(words)


This content originally appeared on DEV Community and was authored by Vamsi Krishna


Print Share Comment Cite Upload Translate Updates
APA

Vamsi Krishna | Sciencx (2022-07-23T12:07:39+00:00) How to fetch API in Python 🔥. Retrieved from https://www.scien.cx/2022/07/23/how-to-fetch-api-in-python-%f0%9f%94%a5/

MLA
" » How to fetch API in Python 🔥." Vamsi Krishna | Sciencx - Saturday July 23, 2022, https://www.scien.cx/2022/07/23/how-to-fetch-api-in-python-%f0%9f%94%a5/
HARVARD
Vamsi Krishna | Sciencx Saturday July 23, 2022 » How to fetch API in Python 🔥., viewed ,<https://www.scien.cx/2022/07/23/how-to-fetch-api-in-python-%f0%9f%94%a5/>
VANCOUVER
Vamsi Krishna | Sciencx - » How to fetch API in Python 🔥. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/07/23/how-to-fetch-api-in-python-%f0%9f%94%a5/
CHICAGO
" » How to fetch API in Python 🔥." Vamsi Krishna | Sciencx - Accessed . https://www.scien.cx/2022/07/23/how-to-fetch-api-in-python-%f0%9f%94%a5/
IEEE
" » How to fetch API in Python 🔥." Vamsi Krishna | Sciencx [Online]. Available: https://www.scien.cx/2022/07/23/how-to-fetch-api-in-python-%f0%9f%94%a5/. [Accessed: ]
rf:citation
» How to fetch API in Python 🔥 | Vamsi Krishna | Sciencx | https://www.scien.cx/2022/07/23/how-to-fetch-api-in-python-%f0%9f%94%a5/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.