```python from twitchy import Helix twitch = Helix(client_id="****", oauth_token="****") me = twitch.get_user() print(me.id) print(me.display_name) ``` Usage example only shows how to use the library as a user, but not as an application.