Random User Agent Selector

  • Share this:

Code introduction


This function randomly selects a user agent from the predefined list of user agents in the requests library and returns it.


Technology Stack : requests, random, requests.utils

Code Type : Function

Code Difficulty : Intermediate


                
                    
def get_random_useragent():
    import random
    import requests
    from requests.utils import user_agent_list

    # Select a random user agent from the list of user agents
    user_agent = random.choice(user_agent_list)
    
    # Return the selected user agent
    return user_agent