APIs (Application Programming Interfaces) allow different software applications to communicate with each other. In Python, the requests
library simplifies the process of making HTTP requests to interact with APIs. In this article, we will explore three diverse examples of using APIs with requests in Python. Each example is designed to show you how to fetch and manipulate data from various sources.
In this example, we will retrieve current weather data for a specific city using the OpenWeatherMap API. This is a useful example if you want to create a weather application or integrate weather information into your project.
To get started, you need to sign up for a free API key at OpenWeatherMap.
import requests
## Define the endpoint and your API key
api_key = 'YOUR_API_KEY_HERE'
city = 'London'
url = f'http://api.openweathermap.org/data/2.5/weather?q={city}&appid={api_key}&units=metric'
## Make the GET request
response = requests.get(url)
## Check if the request was successful
if response.status_code == 200:
data = response.json()
temperature = data['main']['temp']
weather_description = data['weather'][0]['description']
print(f'The current temperature in {city} is {temperature}°C with {weather_description}.')
else:
print(f'Error: {response.status_code}')
In this code:
YOUR_API_KEY_HERE
with your actual API key.This example demonstrates how to send data to an API using the JSON Placeholder service, which is a great tool for testing and prototyping. We will create a new post.
import requests
## Define the API endpoint
url = 'https://jsonplaceholder.typicode.com/posts'
## Create a new post data
post_data = {
'title': 'foo',
'body': 'bar',
'userId': 1
}
## Make the POST request
response = requests.post(url, json=post_data)
## Check if the request was successful
if response.status_code == 201:
print('Post created successfully:', response.json())
else:
print(f'Error: {response.status_code}')
In this code:
requests.post()
method to send the data.post_data
dictionary to include different values.In this example, we will use the GitHub API to fetch user information. GitHub requires authentication for certain requests, so we will use a personal access token. This is useful if you want to interact with repositories or user profiles programmatically.
```python
import requests
url = ‘https://api.github.com/user’
access_token = ‘YOUR_ACCESS_TOKEN_HERE’
headers = {’Authorization’: f’token {access_token}’}
response = requests.get(url, headers=headers)
if response.status_code == 200:
user_data = response.json()
print(f’User: {user_data[