import requests
# GitLab API URL
api_url = "https://gitlab.example.com/api/v4/"
# Access Token
access_token = "<your-access-token>"
# Endpoint to retrieve projects
projects_endpoint = "projects"
# Construct the API request URL
api_request_url = api_url + projects_endpoint
# Set the headers with the access token
headers = {
"Authorization": f"Bearer {access_token}"
}
# Make the API request
response = requests.get(api_request_url, headers=headers)
# Check if the request was successful
if response.status_code == 200:
# Convert the response to JSON
data = response.json()
# Process the retrieved data
for project in data:
print(project["name"])
else:
# Display an error message if the request failed
print(f"Request failed with status code {response.status_code}")