Random User Fetch with httpx

  • Share this:

Code introduction


This function uses the httpx library to make a GET request to the randomuser.me API to fetch random user information. If the request is successful, it returns the user information, otherwise, it raises an exception.


Technology Stack : httpx

Code Type : HTTP request

Code Difficulty : Intermediate


                
                    
def fetch_random_user(httpx_client):
    """
    Fetches a random user from the randomuser.me API using the httpx library.
    """
    response = httpx_client.get('https://randomuser.me/api/')
    if response.status_code == 200:
        return response.json()
    else:
        raise Exception("Failed to fetch random user")

# JSON representation of the code                
              
Tags: