### Install valclient.py Package Source: https://github.com/colinhartigan/valclient.py/blob/master/README.md Installs the valclient.py library using pip, making it available for use in Python projects. This is the primary step to begin using the VALORANT API wrapper. ```python pip install valclient ``` -------------------------------- ### Fetch Latest Match ID using valclient.py Source: https://github.com/colinhartigan/valclient.py/blob/master/README.md Demonstrates how to use the valclient.py library to fetch the MatchID of the latest unrated match. It initializes a client, activates it, fetches the match history, and prints the MatchID of the first match in the history. ```python from valclient.client import Client client = Client(region="na") client.activate() # get MatchID of latest match history = client.fetch_match_history(queue_id="unrated") print(history["History"][0]["MatchID"]) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.